diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-04-05 10:29:38 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-04-05 10:29:38 +0000 |
commit | bff997e02b5b5f96d742be84c6e15f85aa728d29 (patch) | |
tree | 9345ddb7f926663b3a0335de757fc67febf7059d /include/ruby/st.h | |
parent | 5f77f2345c03009d4172cea386ee52b0379f9fcf (diff) |
defines.h: RUBY_SYMBOL_EXPORT_{BEGIN,END}
* include/ruby/defines.h (RUBY_SYMBOL_EXPORT_{BEGIN,END}): visibility
control macros.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40122 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/st.h')
-rw-r--r-- | include/ruby/st.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/ruby/st.h b/include/ruby/st.h index 466bbcf5f6..ef838b7aeb 100644 --- a/include/ruby/st.h +++ b/include/ruby/st.h @@ -14,9 +14,7 @@ extern "C" { #include "ruby/defines.h" -#if defined __GNUC__ && __GNUC__ >= 4 -#pragma GCC visibility push(default) -#endif +RUBY_SYMBOL_EXPORT_BEGIN #if SIZEOF_LONG == SIZEOF_VOIDP typedef unsigned long st_data_t; @@ -130,9 +128,7 @@ st_index_t st_hash_end(st_index_t h); st_index_t st_hash_start(st_index_t h); #define st_hash_start(h) ((st_index_t)(h)) -#if defined __GNUC__ && __GNUC__ >= 4 -#pragma GCC visibility pop -#endif +RUBY_SYMBOL_EXPORT_END #if defined(__cplusplus) #if 0 |