diff options
author | Jose <jose@zeroc.com> | 2014-05-05 17:32:04 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-05-05 17:32:04 +0200 |
commit | c568eb50bbba10034a96ba30fa9db0ecb3e5d849 (patch) | |
tree | 61bd7661ed28ce0b85a91903ad78e92fe4e679fd /cpp/include/Slice/Parser.h | |
parent | String converter test minor fix (diff) | |
download | ice-c568eb50bbba10034a96ba30fa9db0ecb3e5d849.tar.bz2 ice-c568eb50bbba10034a96ba30fa9db0ecb3e5d849.tar.xz ice-c568eb50bbba10034a96ba30fa9db0ecb3e5d849.zip |
Fixed (ICE-714) - New visibility options in GCC 4.0
Diffstat (limited to 'cpp/include/Slice/Parser.h')
-rw-r--r-- | cpp/include/Slice/Parser.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/include/Slice/Parser.h b/cpp/include/Slice/Parser.h index a057c12a2d5..f4a6da1498a 100644 --- a/cpp/include/Slice/Parser.h +++ b/cpp/include/Slice/Parser.h @@ -57,13 +57,13 @@ const IceUtil::Int64 Int16Min = -Int16Max - 1; const IceUtil::Int64 ByteMax = 0xff; const IceUtil::Int64 ByteMin = 0x00; -SLICE_API enum FeatureProfile +enum SLICE_API FeatureProfile { Ice, IceE }; -SLICE_API enum NodeType +enum SLICE_API NodeType { Dummy, Real @@ -72,7 +72,7 @@ SLICE_API enum NodeType // // Format preference for classes and exceptions. // -SLICE_API enum FormatType +enum SLICE_API FormatType { DefaultFormat, // No preference was specified. CompactFormat, // Minimal format. |