]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/string.cpp
static wxFile::Access() added
[wxWidgets.git] / src / common / string.cpp
index e52392bf89a455ecce0624e91fa5b2f50956f456..1273610fb6c6b7b54f5196c620168225254a5825 100644 (file)
@@ -47,7 +47,8 @@
 
 // allocating extra space for each string consumes more memory but speeds up
 // the concatenation operations (nLen is the current string's length)
 
 // allocating extra space for each string consumes more memory but speeds up
 // the concatenation operations (nLen is the current string's length)
-#define EXTRA_ALLOC       16
+// NB: EXTRA_ALLOC must be >= 0!
+#define EXTRA_ALLOC       (19 - nLen % 16)
 
 // ---------------------------------------------------------------------------
 // static class variables definition
 
 // ---------------------------------------------------------------------------
 // static class variables definition