aboutsummaryrefslogtreecommitdiff
path: root/common/str.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/str.cpp')
-rw-r--r--common/str.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/str.cpp b/common/str.cpp
index 24341ddc44..aecbbf2574 100644
--- a/common/str.cpp
+++ b/common/str.cpp
@@ -518,7 +518,7 @@ void String::wordWrap(const uint32 maxLength) {
makeUnique();
- enum { kNoSpace = 0xFFFFFFFF };
+ const uint32 kNoSpace = 0xFFFFFFFF;
uint32 i = 0;
while (i < _size) {