mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
fix GCC build error "explicit qualification in declaration of MLStorage::..."
svn path=/trunk/; revision=23415
This commit is contained in:
parent
6193e2092b
commit
a16732d63c
1 changed files with 5 additions and 5 deletions
|
@ -49,11 +49,11 @@ namespace XMLStorage {
|
|||
|
||||
// work around GCC's wide string constant bug
|
||||
#ifdef __GNUC__
|
||||
const LPCXSSTR XMLStorage::XS_EMPTY = XS_EMPTY_STR;
|
||||
const LPCXSSTR XMLStorage::XS_TRUE = XS_TRUE_STR;
|
||||
const LPCXSSTR XMLStorage::XS_FALSE = XS_FALSE_STR;
|
||||
const LPCXSSTR XMLStorage::XS_INTFMT = XS_INTFMT_STR;
|
||||
const LPCXSSTR XMLStorage::XS_FLOATFMT = XS_FLOATFMT_STR;
|
||||
const LPCXSSTR XS_EMPTY = XS_EMPTY_STR;
|
||||
const LPCXSSTR XS_TRUE = XS_TRUE_STR;
|
||||
const LPCXSSTR XS_FALSE = XS_FALSE_STR;
|
||||
const LPCXSSTR XS_INTFMT = XS_INTFMT_STR;
|
||||
const LPCXSSTR XS_FLOATFMT = XS_FLOATFMT_STR;
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue