Skip to content

Commit

Permalink
Exit strategy.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbikker committed Nov 25, 2024
1 parent e926c42 commit 9510755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiny_bvh.h
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ typedef bvhvec4 SIMDVEC4;

// error handling
#define FATAL_ERROR_IF(c,s) if (c) { fprintf( stderr, \
"Fatal error in tiny_bvh.h, line %i:\n%s\n", __LINE__, s ); exit( 0 ); }
"Fatal error in tiny_bvh.h, line %i:\n%s\n", __LINE__, s ); std::exit( 1 ); }

// ============================================================================
//
Expand Down

0 comments on commit 9510755

Please sign in to comment.