diff options
author | Christian <c@ethdev.com> | 2014-10-23 06:24:07 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-10-23 06:24:07 +0800 |
commit | fd046d7c9088498fbb0bded6a8ca69554155f483 (patch) | |
tree | 848b43ed7ee8c2984ce8748030b4c29c37a0ef10 /Scanner.h | |
parent | c8b008558d1fe7fac56a7de0fa961a853d154880 (diff) | |
download | dexon-solidity-fd046d7c9088498fbb0bded6a8ca69554155f483.tar.gz dexon-solidity-fd046d7c9088498fbb0bded6a8ca69554155f483.tar.zst dexon-solidity-fd046d7c9088498fbb0bded6a8ca69554155f483.zip |
Corrected spacing around colon.
Diffstat (limited to 'Scanner.h')
-rw-r--r-- | Scanner.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -73,7 +73,7 @@ class ParserRecorder; class CharStream { public: - CharStream() : m_pos(0) {} + CharStream(): m_pos(0) {} explicit CharStream(std::string const& _source): m_source(_source), m_pos(0) {} int getPos() const { return m_pos; } bool isPastEndOfInput() const { return m_pos >= m_source.size(); } |