Fix compiler warning in unit test: unused variable.

pull/1871/head
Kim Kulling 2018-04-06 11:16:52 +02:00
parent 08ddd5c296
commit d17cf76c85
1 changed files with 5 additions and 0 deletions

View File

@ -54,4 +54,9 @@ TEST_F( utSimd, SSE2SupportedTest ) {
bool isSupported;
isSupported = CPUSupportsSSE2();
if ( isSupported ) {
std::cout << "Supported" << std::endl;
} else {
std::cout << "Not supported" << std::endl;
}
}