diff options
author | Bernard Normier <bernard@zeroc.com> | 2018-10-26 17:50:34 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2018-10-26 17:50:34 -0400 |
commit | 382c7260a3a7b773942c6f46226e853790ef261b (patch) | |
tree | 878884d363367578ed29f14abfcdebbed4ff053a /cpp/src/IceUtil/UtilException.cpp | |
parent | Extra C++ warning flags with clang and g++. (diff) | |
download | ice-382c7260a3a7b773942c6f46226e853790ef261b.tar.bz2 ice-382c7260a3a7b773942c6f46226e853790ef261b.tar.xz ice-382c7260a3a7b773942c6f46226e853790ef261b.zip |
Fix travis failure
Diffstat (limited to 'cpp/src/IceUtil/UtilException.cpp')
-rw-r--r-- | cpp/src/IceUtil/UtilException.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceUtil/UtilException.cpp b/cpp/src/IceUtil/UtilException.cpp index acf6fdbc00c..319ffedd7cd 100644 --- a/cpp/src/IceUtil/UtilException.cpp +++ b/cpp/src/IceUtil/UtilException.cpp @@ -114,13 +114,13 @@ HANDLE process = 0; backtrace_state* bstate = 0; void -ignoreErrorCallback(void*, const char* msg, int errnum) +ignoreErrorCallback(void*, const char* /*msg*/, int /*errnum*/) { // cerr << "Error callback: " << msg << ", errnum = " << errnum << endl; } int -ignoreFrame(void*, uintptr_t pc, const char*, int, const char*) +ignoreFrame(void*, ICE_MAYBE_UNUSED uintptr_t pc, const char*, int, const char*) { assert(pc == 0); return 0; |