diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-02 09:42:04 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-01-02 09:42:04 +0100 |
| commit | a00e0a5fb93c96460ddec264fc89a726004b94c2 (patch) | |
| tree | 5808921581ff0d68eebf134cc34ccb6d9c3f86e9 /C++Kit | |
| parent | cec81a16c9994b2a6188c17b7b849f165203006c (diff) | |
ccplus: now parsing using another strategy.
cc: fix: r15 used instead of r19 for jlr.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'C++Kit')
| -rw-r--r-- | C++Kit/ParserKit.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/C++Kit/ParserKit.hpp b/C++Kit/ParserKit.hpp index 62eff00..20645be 100644 --- a/C++Kit/ParserKit.hpp +++ b/C++Kit/ParserKit.hpp @@ -29,7 +29,7 @@ namespace ParserKit //! @brief Compile a syntax tree ouf of the text. //! Also takes the source file name for metadata. - virtual void Compile(const char* text, const char* file) = 0; + virtual bool Compile(const std::string& text, const char* file) = 0; //! @brief What language are we dealing with? virtual const char* Language() { return "Generic Language"; } |
