Browse Source

removed unnecessary flush from DEBUG

main
Stefan Pranger 2 years ago
parent
commit
e7a87bbaa9
  1. 2
      io/debug.h

2
io/debug.h

@ -5,7 +5,7 @@
struct print {
print() {}
~print() { std::cout << std::endl << std::flush; }
~print() { std::cout << std::endl; }
};
struct noprint {

Loading…
Cancel
Save