diff options
Diffstat (limited to 'cpp/include/Slice/JavaUtil.h')
-rw-r--r-- | cpp/include/Slice/JavaUtil.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/include/Slice/JavaUtil.h b/cpp/include/Slice/JavaUtil.h index 21921506775..d85ae3cf2bb 100644 --- a/cpp/include/Slice/JavaUtil.h +++ b/cpp/include/Slice/JavaUtil.h @@ -36,7 +36,7 @@ public: // printHeader() and then emits a "package" statement if // necessary. // - bool openClass(const std::string&, const std::string& = std::string()); + void openClass(const std::string&, const std::string& = std::string()); virtual void printHeader(); }; @@ -64,7 +64,7 @@ protected: // Given the fully-scoped Java class name, create any intermediate // package directories and open the class file // - bool open(const std::string&); + void open(const std::string&); ::IceUtilInternal::Output& output() const; |