summaryrefslogtreecommitdiffhomepage
path: root/debug.cpp
blob: 391c522060a0a49e0705b74d363aa1be8f435fb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "debug.h"

#include <iostream>

bool debug{false};

void Debug(std::string s)
{
 if (debug)
  std::cout << s << std::endl;
}