@@ -367,12 +367,12 @@ bool AlmostEqualUlpsFinal(float* A, float* B, int maxUlps)
367367
368368#define DREAM3D_REQUIRE (P ) \
369369 { \
370- const bool testValue = (P); \
371- if ((testValue) == (false )) \
370+ const bool testValue = (P); \
371+ if ((testValue) == (false )) \
372372 { \
373- std::string message (" Your test required the following\n '" ); \
374- message = message.append (#P).append (" '\n but this condition was not met." ); \
375- DREAM3D_TEST_THROW_EXCEPTION (message) \
373+ std::string message (" Your test required the following\n '" ); \
374+ message = message.append (#P).append (" '\n but this condition was not met." ); \
375+ DREAM3D_TEST_THROW_EXCEPTION (message) \
376376 } \
377377 }
378378
@@ -420,11 +420,11 @@ bool AlmostEqualUlpsFinal(float* A, float* B, int maxUlps)
420420#define DREAM3D_REQUIRE_EQUAL (L, R ) \
421421 if ((L) != (R)) \
422422 { \
423- const std::string buf; \
424- std::stringstream outStream (buf); \
425- outStream << " Your test required the following\n '" ; \
426- outStream << #L << " == " << #R << " '\n but this condition was not met.\n " ; \
427- outStream << " " << L << " ==" << R; \
423+ const std::string buf; \
424+ std::stringstream outStream (buf); \
425+ outStream << " Your test required the following\n '" ; \
426+ outStream << #L << " == " << #R << " '\n but this condition was not met.\n " ; \
427+ outStream << " " << L << " ==" << R; \
428428 DREAM3D_TEST_THROW_EXCEPTION (buf) \
429429 }
430430
0 commit comments