Skip to content
Snippets Groups Projects
Commit 90c1d512 authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

made implicit check explicit

parent 4cb818c5
No related merge requests found
...@@ -51,7 +51,7 @@ void runTests( const uint_t numAABBs ) ...@@ -51,7 +51,7 @@ void runTests( const uint_t numAABBs )
TriangleDistance<MeshType> triDist( mesh ); TriangleDistance<MeshType> triDist( mesh );
WALBERLA_CHECK( isIntersecting( triDist, meshAABB, real_t(0) ) ); WALBERLA_CHECK( isIntersecting( triDist, meshAABB, real_t(0) ).value, boost::logic::tribool::true_value );
std::mt19937 rng( uint32_t(42) ); std::mt19937 rng( uint32_t(42) );
...@@ -104,4 +104,4 @@ int main( int argc, char * argv[] ) ...@@ -104,4 +104,4 @@ int main( int argc, char * argv[] )
int main( int argc, char * argv[] ) int main( int argc, char * argv[] )
{ {
return walberla::mesh::main( argc, argv ); return walberla::mesh::main( argc, argv );
} }
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment