mirror of
https://github.com/Poikilos/b3view.git
synced 2023-10-03 07:58:48 -07:00
14 lines
171 B
C++
14 lines
171 B
C++
#include "Debug.h"
|
|
|
|
using std::cout;
|
|
using std::endl;
|
|
using std::ostream;
|
|
using std::wcerr;
|
|
using std::wcout;
|
|
|
|
ostream& debug()
|
|
{
|
|
std::flush(cout);
|
|
return cout;
|
|
}
|