diff options
Diffstat (limited to 'src/parse/token.hpp')
-rw-r--r-- | src/parse/token.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/token.hpp b/src/parse/token.hpp index e2e1f16f..0a72cec1 100644 --- a/src/parse/token.hpp +++ b/src/parse/token.hpp @@ -26,7 +26,7 @@ public: line(0), ofs(0) {} - Position(::std::string filename, unsigned int line, unsigned int ofs): + Position(RcString filename, unsigned int line, unsigned int ofs): filename(filename), line(line), ofs(ofs) |