summaryrefslogtreecommitdiffhomepage
path: root/C++Kit/ParserKit.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'C++Kit/ParserKit.hpp')
-rw-r--r--C++Kit/ParserKit.hpp2
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"; }