Index: src/IceBrowserCompileServer.h |
diff --git a/src/IceBrowserCompileServer.h b/src/IceBrowserCompileServer.h |
index 1729bf816c6c8c158d07f1fd16dbc642f90b9d87..ecacdece63a6c46f4b081c5ef8721febf738170c 100644 |
--- a/src/IceBrowserCompileServer.h |
+++ b/src/IceBrowserCompileServer.h |
@@ -77,13 +77,13 @@ public: |
StringStream &getErrorStream() { return *ErrorStream; } |
- void setFatalError(const IceString &Reason); |
+ void setFatalError(const std::string &Reason); |
private: |
class StringStream { |
public: |
StringStream() : StrBuf(Buffer) {} |
- const IceString &getContents() { return StrBuf.str(); } |
+ const std::string &getContents() { return StrBuf.str(); } |
Ostream &getStream() { return StrBuf; } |
private: |