diff -r ac1744536b33 -r 47e7773c7841 src/ldconfig.h --- a/src/ldconfig.h Tue Jan 07 08:26:15 2014 +0200 +++ b/src/ldconfig.h Tue Jan 07 08:53:27 2014 +0200 @@ -28,7 +28,8 @@ // String parsing utility for parsing ldconfig.ldr // ============================================================================= class LDConfigParser -{ public: +{ + public: LDConfigParser (str inText, char sep); bool isAtEnd(); @@ -42,8 +43,9 @@ void seek (int amount, bool rel); bool tokenCompare (int inPos, const char* sOther); - str operator[] (const int idx) - { return m_tokens[idx]; + inline str operator[] (const int idx) + { + return m_tokens[idx]; } private: