Browse Source

added flushing of cout in STORM_PRINT macro

tempestpy_adaptions
TimQu 8 years ago
parent
commit
f59e9a7f77
  1. 1
      src/storm/utility/macros.h

1
src/storm/utility/macros.h

@ -56,6 +56,7 @@ do { \
#define STORM_PRINT(message) \
{ \
std::cout << message; \
std::cout.flush(); \
}
#define STORM_PRINT_AND_LOG(message) \

Loading…
Cancel
Save