diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-06-11 09:45:00 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-06-11 09:47:30 +0900 |
commit | dbf87e23f96489d9609e3cfcc0e6a2c31d7a14bf (patch) | |
tree | 180ac781c8b62b2831bd5a861eae2c93d7e8f65c | |
parent | 121ea27f55584ece5c18fcb12fe85a63cd69b349 (diff) |
mark as const
Change-Id: I7f3d231d9f82db663a6a0977fa3f250af9dc8991
-rw-r--r-- | vcl/source/gdi/octree.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/octree.cxx b/vcl/source/gdi/octree.cxx index 93fb8c5de182..671a09152fa3 100644 --- a/vcl/source/gdi/octree.cxx +++ b/vcl/source/gdi/octree.cxx @@ -29,7 +29,7 @@ // - pMask - // --------- -static sal_uInt8 pImplMask[8] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 }; +static const sal_uInt8 pImplMask[8] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 }; // ------------- // - NodeCache - |