Chromium Code Reviews| Index: src/IceBrowserCompileServer.h |
| diff --git a/src/IceBrowserCompileServer.h b/src/IceBrowserCompileServer.h |
| index ce3f60de12dd83cefcebd45a861699d19e101179..48c7cbb617fefb026b0a15adf7eedefd8bdaffdc 100644 |
| --- a/src/IceBrowserCompileServer.h |
| +++ b/src/IceBrowserCompileServer.h |
| @@ -37,14 +37,13 @@ namespace Ice { |
| /// defaults that make sense in the browser case. The output file is specified |
| /// via a posix FD, and input bytes are pushed to the server. |
| class BrowserCompileServer : public CompileServer { |
| - BrowserCompileServer() = delete; |
| BrowserCompileServer(const BrowserCompileServer &) = delete; |
| BrowserCompileServer &operator=(const BrowserCompileServer &) = delete; |
| class StringStream; |
| public: |
| - explicit BrowserCompileServer(Compiler &Comp) |
| - : CompileServer(Comp), InputStream(nullptr), HadError(false) {} |
| + explicit BrowserCompileServer() |
|
Jim Stichnoth
2015/12/07 17:37:13
Remove "explicit" for a zero-arg ctor.
rkotlerimgtec
2015/12/07 18:32:07
Done.
|
| + : InputStream(nullptr), HadError(false) {} |
|
Jim Stichnoth
2015/12/07 17:37:12
You can omit InputStream(nullptr) because of the "
rkotlerimgtec
2015/12/07 18:32:07
Done.
|
| ~BrowserCompileServer() final; |