diff options
Diffstat (limited to 'compilerplugins/clang/stringstatic.cxx')
-rw-r--r-- | compilerplugins/clang/stringstatic.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/clang/stringstatic.cxx b/compilerplugins/clang/stringstatic.cxx index 61dfb584ddf5..c5753445fc34 100644 --- a/compilerplugins/clang/stringstatic.cxx +++ b/compilerplugins/clang/stringstatic.cxx @@ -17,8 +17,8 @@ /** Look for static O*String and O*String[], they can be more efficiently declared as: - static const OUStringLiteral our_aLBEntryMap[] = {" ", ", "}; - static const OUStringLiteral sName("name"); + static const OUStringLiteral our_aLBEntryMap[] = {u" ", u", "}; + static const OUStringLiteral sName(u"name"); which is more efficient at startup time. */ |