From 5a116d0bb5971848235ddd72915520f852c43ba2 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Thu, 24 Oct 2019 23:57:11 -0700 Subject: Fixed a number of clang warning to reduce the log size and fix travis build error --- Tests/TestApp/src/SmartPointerTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Tests/TestApp/src/SmartPointerTest.cpp') diff --git a/Tests/TestApp/src/SmartPointerTest.cpp b/Tests/TestApp/src/SmartPointerTest.cpp index f1f0cb0..850ca99 100644 --- a/Tests/TestApp/src/SmartPointerTest.cpp +++ b/Tests/TestApp/src/SmartPointerTest.cpp @@ -397,7 +397,7 @@ SmartPointerTest::SmartPointerTest() : SmartPtr SP0, SP1(pRawPtr1), SP2(pRawPtr1), SP3(pRawPtr2); assert( !SP0 ); bool b1 = SP0.operator bool(); - assert( !b1 ); + assert( !b1 ); (void)b1; if(SP0) assert( false ); -- cgit v1.2.3