commit | 07f59971bd11df619709444275298061ee69f707 | [log] [tgz] |
---|---|---|
author | James E. King, III <jking@apache.org> | Fri Mar 10 06:18:33 2017 -0500 |
committer | James E. King, III <jking@apache.org> | Fri Mar 10 06:18:33 2017 -0500 |
tree | 197adaaede4f594115899dc409a30d2d842195d3 | |
parent | 9b1544dc21f2d952b91c44e4636e1b9da937002c [diff] [blame] |
THRIFT-4081: appveyor retooling - added mingw64 build as a second job to the CI build process This closes #1205
diff --git a/lib/cpp/test/Base64Test.cpp b/lib/cpp/test/Base64Test.cpp index e9e86dd..7686e4e 100644 --- a/lib/cpp/test/Base64Test.cpp +++ b/lib/cpp/test/Base64Test.cpp
@@ -37,6 +37,10 @@ } void checkEncoding(uint8_t* data, int len) { +#ifdef NDEBUG + ((void)data); +#endif + for (int i = 0; i < len; i++) { BOOST_ASSERT(isalnum(data[i]) || data[i] == '/' || data[i] == '+'); }