diff options
Diffstat (limited to 'cpp/include/Slice/RubyUtil.h')
-rw-r--r-- | cpp/include/Slice/RubyUtil.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/include/Slice/RubyUtil.h b/cpp/include/Slice/RubyUtil.h index c1309539882..3acae195d9c 100644 --- a/cpp/include/Slice/RubyUtil.h +++ b/cpp/include/Slice/RubyUtil.h @@ -21,7 +21,7 @@ namespace Ruby // // Generate Ruby code for a translation unit. // -SLICE_API void generate(const Slice::UnitPtr&, bool, bool, const std::vector<std::string>&, IceUtilInternal::Output&); +void generate(const Slice::UnitPtr&, bool, bool, const std::vector<std::string>&, IceUtilInternal::Output&); // // Check the given identifier against Ruby's list of reserved words. If it matches @@ -33,20 +33,20 @@ enum IdentStyle IdentToUpper, // Mapped identifier must begin with an upper-case letter. IdentToLower // Mapped identifier must begin with a lower-case letter. }; -SLICE_API std::string fixIdent(const std::string&, IdentStyle); +std::string fixIdent(const std::string&, IdentStyle); // // Get the fully-qualified name of the given definition. If a prefix is provided, // it is prepended to the definition's unqualified name. // -SLICE_API std::string getAbsolute(const Slice::ContainedPtr&, IdentStyle, const std::string& = std::string()); +std::string getAbsolute(const Slice::ContainedPtr&, IdentStyle, const std::string& = std::string()); // // Emit a comment header. // -SLICE_API void printHeader(IceUtilInternal::Output&); +void printHeader(IceUtilInternal::Output&); -SLICE_API int compile(int, char*[]); +int compile(int, char*[]); } } |