mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Use private namespace for visibility keyword.
Noted by: bde MFC after: 3 days
This commit is contained in:
parent
f77b6c6a25
commit
8f0e6fd35b
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue