diff options
author | Jose <jose@zeroc.com> | 2014-10-24 17:11:06 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-10-24 17:11:06 +0200 |
commit | 684d4de9f7ec891043ae90e005d29f48a83fbfa2 (patch) | |
tree | 971ca0d12cfeb6b3c2094c6b5946de13db2b4c7b /cpp | |
parent | Fixed typo committed in last commit (diff) | |
download | ice-684d4de9f7ec891043ae90e005d29f48a83fbfa2.tar.bz2 ice-684d4de9f7ec891043ae90e005d29f48a83fbfa2.tar.xz ice-684d4de9f7ec891043ae90e005d29f48a83fbfa2.zip |
g++4.9 fix: Linux IceSSL unused method
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/IceSSL/Util.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/IceSSL/Util.cpp b/cpp/src/IceSSL/Util.cpp index f1c4da46c80..4150f377b8e 100644 --- a/cpp/src/IceSSL/Util.cpp +++ b/cpp/src/IceSSL/Util.cpp @@ -50,6 +50,7 @@ IceSSL::readFile(const string& file, vector<char>& buffer) } } +#ifndef ICE_USE_OPENSSL namespace { bool @@ -91,6 +92,7 @@ parseBytes(const string& arg, vector<unsigned char>& buffer) return true; } } +#endif #ifdef ICE_USE_OPENSSL namespace |