1
0
mirror of https://gitlab.com/rnger/amath synced 2025-10-06 02:49:59 +00:00

Fix method signature

This commit is contained in:
Carsten Larsen
2017-01-09 20:59:54 +01:00
parent 238871bd73
commit ea16f22b9a
2 changed files with 4 additions and 4 deletions

View File

@ -54,11 +54,11 @@ public:
/**
* @brief Parses the input into a syntax tree.
*
* @return SyntaxNode* representing an pointer to the top node of the tree.
* @return SyntaxNode* representing a pointer to the top node of the tree.
* Notice: The caller is responsible for releasing memory.
*
*/
SyntaxNode* Parse();
SyntaxNode* Parse(); // Clang ns_returns_retained
private:
Lexer *lexer;