[Scummvm-cvs-logs] SF.net SVN: scummvm:[39789] scummvm/trunk/common/str.h
lordhoto at users.sourceforge.net
lordhoto at users.sourceforge.net
Wed Apr 1 15:59:53 CEST 2009
Revision: 39789
http://scummvm.svn.sourceforge.net/scummvm/?rev=39789&view=rev
Author: lordhoto
Date: 2009-04-01 13:59:53 +0000 (Wed, 01 Apr 2009)
Log Message:
-----------
Formatting.
Modified Paths:
--------------
scummvm/trunk/common/str.h
Modified: scummvm/trunk/common/str.h
===================================================================
--- scummvm/trunk/common/str.h 2009-04-01 11:03:06 UTC (rev 39788)
+++ scummvm/trunk/common/str.h 2009-04-01 13:59:53 UTC (rev 39789)
@@ -180,7 +180,7 @@
inline bool empty() const { return (_size == 0); }
char lastChar() const { return (_size > 0) ? _str[_size-1] : 0; }
- char operator [](int idx) const {
+ char operator[](int idx) const {
assert(_str && idx >= 0 && idx < (int)_size);
return _str[idx];
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list