Skip to content
Snippets Groups Projects
Commit c8183082 authored by Martin Beseda's avatar Martin Beseda
Browse files

[FIX] Added missing linebreaks.

parent ce427787
No related branches found
No related tags found
No related merge requests found
......@@ -8,10 +8,10 @@
#define COL_WIDTH 20
#define R_ALIGN std::setw(COL_WIDTH) << std::right
#define COUT_INFO(inp) std::cout << std::flush << std::fixed << std::setprecision(12) << "INFO: " << inp << std::flush
#define COUT_INFO(inp) std::cout << std::flush << std::fixed << std::setprecision(12) << "INFO: " << inp << std::endl << std::flush
#ifdef L4N_DEBUG
#define COUT_DEBUG(inp) assert(std::cerr << std::flush << std::fixed << std::setprecision(12) << "DEBUG: " << inp << std::flush)
#define COUT_DEBUG(inp) assert(std::cerr << std::flush << std::fixed << std::setprecision(12) << "DEBUG: " << inp << std::endl << std::flush)
#define WRITE_TO_OFS_DEBUG(ofs, msg) { if(ofs && ofs->is_open())\
*ofs << std::fixed << std::setprecision(12) << "DEBUG: " << msg;\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment