aboutsummaryrefslogtreecommitdiff
path: root/common/str.h
diff options
context:
space:
mode:
authorJohannes Schickel2009-04-01 13:59:53 +0000
committerJohannes Schickel2009-04-01 13:59:53 +0000
commita9e424f177605de071673001902d0995008bea89 (patch)
treeefbc7501b2e2c9614e5eabd83acc5223973b5843 /common/str.h
parentf0456d67a873f8d6dd8d0c8262dd454bacb235b9 (diff)
downloadscummvm-rg350-a9e424f177605de071673001902d0995008bea89.tar.gz
scummvm-rg350-a9e424f177605de071673001902d0995008bea89.tar.bz2
scummvm-rg350-a9e424f177605de071673001902d0995008bea89.zip
Formatting.
svn-id: r39789
Diffstat (limited to 'common/str.h')
-rw-r--r--common/str.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/str.h b/common/str.h
index b9b269468f..5792692030 100644
--- a/common/str.h
+++ b/common/str.h
@@ -180,7 +180,7 @@ public:
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];
}