summaryrefslogtreecommitdiff
path: root/src/core/BufferedCharReader.hpp
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2014-12-05 13:52:40 +0100
committerAndreas Stöckel <andreas@somweyr.de>2014-12-05 13:52:40 +0100
commitddbea4164e126739f39658627c04e7e23b71e090 (patch)
treebdac63cf2a1c73fd3f67fa03fc821ef4eaf93b83 /src/core/BufferedCharReader.hpp
parent3d6058315f7f0da9994e35c144d0acb76a252472 (diff)
parent9cb01624a4efe2063d5870f41e033476d9368b6d (diff)
fixed conflict
Diffstat (limited to 'src/core/BufferedCharReader.hpp')
-rw-r--r--src/core/BufferedCharReader.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/BufferedCharReader.hpp b/src/core/BufferedCharReader.hpp
index ec76b03..bd19d4a 100644
--- a/src/core/BufferedCharReader.hpp
+++ b/src/core/BufferedCharReader.hpp
@@ -252,21 +252,21 @@ public:
*
* @return true if there is no more data.
*/
- bool atEnd();
+ bool atEnd() const;
/**
* Returns the current line (starting with one).
*
* @return the current line number.
*/
- inline int getLine() { return readCursor.line; }
+ int getLine() const { return readCursor.line; }
/**
* Returns the current column (starting with one).
*
* @return the current column number.
*/
- inline int getColumn() { return readCursor.column; }
+ int getColumn() const { return readCursor.column; }
};
}