aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2008-03-30 12:44:05 +0000
committerMax Horn2008-03-30 12:44:05 +0000
commit7e1ba4732e0ef99644783111c717832eee684072 (patch)
treece25e262f7f5a07ad192d9059630ff47ad3fb7d5 /common
parentde5fca43e617766b90018609465c1ae179b4345f (diff)
downloadscummvm-rg350-7e1ba4732e0ef99644783111c717832eee684072.tar.gz
scummvm-rg350-7e1ba4732e0ef99644783111c717832eee684072.tar.bz2
scummvm-rg350-7e1ba4732e0ef99644783111c717832eee684072.zip
Dropped superfluous 'virtual' keyword (saves us a few bytes for each String)
svn-id: r31327
Diffstat (limited to 'common')
-rw-r--r--common/str.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/str.h b/common/str.h
index fc652d517a..e85213b561 100644
--- a/common/str.h
+++ b/common/str.h
@@ -100,7 +100,7 @@ public:
String(const char *str, uint32 len = 0);
String(const String &str);
String(char c);
- virtual ~String();
+ ~String();
String &operator =(const char *str);
String &operator =(const String &str);