office-gobmx/sal/qa
Luboš Luňák 3d9f5c856a make OString work even with old gcc that has SFINAE broken
Since OString already has a ctor accepting const char*, I cannot
find out a way to distinguish string literals other than using
a template, otherwise const char* somehow takes precedence
(all of gcc, clang, msvc). But the template requires
the Substitution Is Not A Failure Idiom to actually create
only wanted instances. And the compiler can try evaluate
the OString ctor as a possibility when comparing an int to
an anonymous enum, and anonymous enum as a type without linkage
cannot be a template argument before C++11. SFINAE should still
work, but not with gcc older than 4.0.2 (which we right now
use only on macs). So for that case disable the string literal
ctors, which means macs will have one extra strlen call,
and also that embedded \0's in string literals will be
inconsistent. The tiny performance problem shouldn't matter that
much and will eventually go away, the \0 problem should not
matter, since before string literal ctors were introduced
\0's had not been included anyway unless RTL_CONSTASCII_STRINGPARAM
was used. So we should be safe and when removing the CONSTASCII
macros \0 cases should be handled by explicitly mentioning
the length.
2012-03-13 16:21:04 +01:00
..
ByteSequence
helper/gcov
inc
osl WaE: deleting 'PSID {aka void*}' is undefined 2012-03-07 14:01:26 +01:00
OStringBuffer OString ctor for string literals without RTL_CONSTASCII stuff 2012-03-12 13:35:56 +01:00
rtl make OString work even with old gcc that has SFINAE broken 2012-03-13 16:21:04 +01:00
rtl_strings
sal
static
systools
testHelperFunctions
buildall.pl
cppunit_local.mk
libs2test.txt
makefile.mk