diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-11 14:49:27 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-02-12 09:13:43 +0200 |
commit | 0c6d6aa47ea0a7260b4bc01519e51ef78e97f459 (patch) | |
tree | e3214af4da68f3415d89f02e259420fd75e8b842 /idl/inc | |
parent | ffc7e42fc925a5e1073ec1b0025b4a1848683007 (diff) |
rename Read()->ReadIf() and ReadDelimiter()->ReadIfDelimiter()
Change-Id: I589dc0280c5bb587aa024b0f1dcf0b623d719aa4
Diffstat (limited to 'idl/inc')
-rw-r--r-- | idl/inc/lex.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/idl/inc/lex.hxx b/idl/inc/lex.hxx index bc0feea2c302..a9869de4c2ed 100644 --- a/idl/inc/lex.hxx +++ b/idl/inc/lex.hxx @@ -186,7 +186,7 @@ public: SvToken& GetToken() const { return *(*pCurToken).get(); } - bool Read( char cChar ) + bool ReadIf( char cChar ) { if( (*pCurToken)->IsChar() && cChar == (*pCurToken)->GetChar() ) @@ -198,7 +198,7 @@ public: return false; } - void ReadDelimiter() + void ReadIfDelimiter() { if( (*pCurToken)->IsChar() && (';' == (*pCurToken)->GetChar() |