Kaydet (Commit) 9dec6475 authored tarafından David Tardon's avatar David Tardon

fix for gcc 4.7/C++11: these are not string literal operators

üst 0669fdb4
...@@ -46,10 +46,10 @@ extern "C" int main( int argc, char const * argv [] ) ...@@ -46,10 +46,10 @@ extern "C" int main( int argc, char const * argv [] )
#define SAL_DLLPREFIX "" #define SAL_DLLPREFIX ""
#endif #endif
Module mod_starter( Module mod_starter(
OUSTR(SAL_DLLPREFIX"starter"SAL_DLLEXTENSION), OUSTR(SAL_DLLPREFIX "starter" SAL_DLLEXTENSION),
SAL_LOADMODULE_LAZY | SAL_LOADMODULE_GLOBAL ); SAL_LOADMODULE_LAZY | SAL_LOADMODULE_GLOBAL );
Module mod_thrower( Module mod_thrower(
OUSTR(SAL_DLLPREFIX"thrower"SAL_DLLEXTENSION), OUSTR(SAL_DLLPREFIX "thrower" SAL_DLLEXTENSION),
SAL_LOADMODULE_LAZY | SAL_LOADMODULE_GLOBAL ); SAL_LOADMODULE_LAZY | SAL_LOADMODULE_GLOBAL );
typedef t_throws_exc (SAL_CALL * t_get_thrower)(); typedef t_throws_exc (SAL_CALL * t_get_thrower)();
......
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