diff options
author | Simon Marlow <marlowsd@gmail.com> | 2009-09-09 09:32:17 +0000 |
---|---|---|
committer | Simon Marlow <marlowsd@gmail.com> | 2009-09-09 09:32:17 +0000 |
commit | 9a9803e8dc80ba41bd3e2d31228e64fa6b61060e (patch) | |
tree | 7a31b6abc9b585771bd88df29e8502bb0e5da31b /rts/Updates.h | |
parent | b25c93f1c914d81d77aeafeb49263f29bed128aa (diff) | |
download | haskell-9a9803e8dc80ba41bd3e2d31228e64fa6b61060e.tar.gz |
Omit visibility pragmas on Windows (fixes warnings/validate failures)
Diffstat (limited to 'rts/Updates.h')
-rw-r--r-- | rts/Updates.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/rts/Updates.h b/rts/Updates.h index 3b37409476..988fb6059f 100644 --- a/rts/Updates.h +++ b/rts/Updates.h @@ -9,7 +9,9 @@ #ifndef UPDATES_H #define UPDATES_H -#pragma GCC visibility push(hidden) +#ifndef CMINUSMINUS +BEGIN_RTS_PRIVATE +#endif /* ----------------------------------------------------------------------------- Updates @@ -228,6 +230,8 @@ no_slop: } #endif /* CMINUSMINUS */ -#pragma GCC visibility pop +#ifndef CMINUSMINUS +END_RTS_PRIVATE +#endif #endif /* UPDATES_H */ |