Kaydet (Commit) 91cbb7b7 authored tarafından Caolán McNamara's avatar Caolán McNamara

remove const to allow alternative template

üst 2d97d88c
......@@ -54,9 +54,9 @@
#define CONST_TEST_STRING "gregorian"
namespace {
struct Gregorian : public ::rtl::StaticWithInit<const ::rtl::OUString, Gregorian> {
const ::rtl::OUString operator () () {
return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( CONST_TEST_STRING ));
struct Gregorian : public rtl::StaticWithInit<rtl::OUString, Gregorian> {
const rtl::OUString operator () () {
return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( CONST_TEST_STRING ));
}
};
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment