diff options
Diffstat (limited to 'cpp/include/Slice/PythonUtil.h')
-rw-r--r-- | cpp/include/Slice/PythonUtil.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/include/Slice/PythonUtil.h b/cpp/include/Slice/PythonUtil.h index fdd1f98fc1c..880390e702f 100644 --- a/cpp/include/Slice/PythonUtil.h +++ b/cpp/include/Slice/PythonUtil.h @@ -51,8 +51,10 @@ SLICE_API std::string getPackageMetadata(const Slice::ContainedPtr&); // prepended to the definition's unqualified name. If the nameSuffix // is provided, it is appended to the containers name. // -SLICE_API std::string getAbsolute(const Slice::ContainedPtr&, const std::string& = std::string(), - const std::string& = std::string()); +// COMPILERFIX: MSVC 6 seems to have a problem with const std::string +// = std::string(), const std::string = std::string(). +// +SLICE_API std::string getAbsolute(const Slice::ContainedPtr&, const std::string& = "", const std::string& = ""); // // Emit a comment header. |