diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-01-30 09:29:42 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-01-30 09:29:42 -0330 |
commit | 0a2a4d818fb5c276e6ba008c29b591683d5025bd (patch) | |
tree | bef463540bcd1ba853b75c8f265845251e819fd6 /cpp/demo/Manual/map_filesystem/FilesystemI.h | |
parent | Fixed (ICE-6276) - Add support for JavaScript source maps (diff) | |
download | ice-0a2a4d818fb5c276e6ba008c29b591683d5025bd.tar.bz2 ice-0a2a4d818fb5c276e6ba008c29b591683d5025bd.tar.xz ice-0a2a4d818fb5c276e6ba008c29b591683d5025bd.zip |
ICE-5814 allow demos to be built with /W4 on Windows
Diffstat (limited to 'cpp/demo/Manual/map_filesystem/FilesystemI.h')
-rw-r--r-- | cpp/demo/Manual/map_filesystem/FilesystemI.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/demo/Manual/map_filesystem/FilesystemI.h b/cpp/demo/Manual/map_filesystem/FilesystemI.h index 1d8b471d541..d788ea70775 100644 --- a/cpp/demo/Manual/map_filesystem/FilesystemI.h +++ b/cpp/demo/Manual/map_filesystem/FilesystemI.h @@ -31,6 +31,9 @@ public: private: + // Required to prevent compiler warnings with MSVC++ + FileI& operator=(const FileI&); + void halt(const Freeze::DatabaseException&) const; const Ice::CommunicatorPtr _communicator; @@ -54,6 +57,9 @@ public: private: + // Required to prevent compiler warnings with MSVC++ + DirectoryI& operator=(const DirectoryI&); + void halt(const Freeze::DatabaseException&) const; const Ice::CommunicatorPtr _communicator; |