diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-10-25 06:57:11 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-10-25 06:57:11 +0000 |
| commit | 5a116d0bb5971848235ddd72915520f852c43ba2 (patch) | |
| tree | 9f59ad53ad09858b8c3443ff5ff9c84c0be463fa /Tests/TestApp/src/SmartPointerTest.cpp | |
| parent | Updated core & samples; added Tutorial 16; updated troubleshooting (diff) | |
| download | DiligentEngine-5a116d0bb5971848235ddd72915520f852c43ba2.tar.gz DiligentEngine-5a116d0bb5971848235ddd72915520f852c43ba2.zip | |
Fixed a number of clang warning to reduce the log size and fix travis build error
Diffstat (limited to 'Tests/TestApp/src/SmartPointerTest.cpp')
| -rw-r--r-- | Tests/TestApp/src/SmartPointerTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 ); |
