summaryrefslogtreecommitdiff
path: root/editeng/source/editeng/editdata.cxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-04-14 00:42:50 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-04-14 00:42:50 -0400
commit70d27eddd2e86fc525c0c482496f4f4803efafae (patch)
tree974d131bbb0794bb702890189b92b71a3db427d5 /editeng/source/editeng/editdata.cxx
parent7b74902db2ad3185e7b61ab4a15385e5a6db06a8 (diff)
This must be const.
Diffstat (limited to 'editeng/source/editeng/editdata.cxx')
-rw-r--r--editeng/source/editeng/editdata.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/editdata.cxx b/editeng/source/editeng/editdata.cxx
index 2aaa093706ae..f06a9c70a0d7 100644
--- a/editeng/source/editeng/editdata.cxx
+++ b/editeng/source/editeng/editdata.cxx
@@ -30,6 +30,6 @@
#include <limits>
-size_t EE_APPEND = std::numeric_limits<size_t>::max();
+const size_t EE_APPEND = std::numeric_limits<size_t>::max();
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */