mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
* Forgot the GCC case.
svn path=/trunk/; revision=58750
This commit is contained in:
parent
78c8abf0e3
commit
dfa9f630bb
2 changed files with 2 additions and 2 deletions
|
@ -300,7 +300,7 @@
|
|||
#endif /* DECLSPEC_ALIGN */
|
||||
|
||||
#ifndef DECLSPEC_SELECTANY
|
||||
#if (_MSC_VER >= 1100)
|
||||
#if (_MSC_VER >= 1100) || defined(__GNUC__)
|
||||
#define DECLSPEC_SELECTANY __declspec(selectany)
|
||||
#else
|
||||
#define DECLSPEC_SELECTANY
|
||||
|
|
|
@ -218,7 +218,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
#ifndef DECLSPEC_SELECTANY
|
||||
#if (_MSC_VER >= 1100)
|
||||
#if (_MSC_VER >= 1100) || defined(__GNUC__)
|
||||
#define DECLSPEC_SELECTANY __declspec(selectany)
|
||||
#else
|
||||
#define DECLSPEC_SELECTANY
|
||||
|
|
Loading…
Reference in a new issue