Use private namespace for visibility keyword.

Noted by:	bde
MFC after:	3 days
This commit is contained in:
kib 2010-08-27 09:55:51 +00:00
parent 6a53abbf00
commit a2e990f168

View File

@ -306,8 +306,8 @@
#endif
#if __GNUC_PREREQ__(4, 2)
#define __hidden __attribute__((visibility("hidden")))
#define __exported __attribute__((visibility("default")))
#define __hidden __attribute__((__visibility__("hidden")))
#define __exported __attribute__((__visibility__("default")))
#else
#define __hidden
#define __exported