diff options
author | Josh Blum | 2012-09-06 20:11:56 -0700 |
---|---|---|
committer | Josh Blum | 2012-09-06 20:11:56 -0700 |
commit | f84970693f4e1c9919e139c1d99daa74691b5a46 (patch) | |
tree | 39f9c7c387d99d99b08fc996b1ab302083454de7 /lib/gras_impl/debug.hpp | |
parent | 1a571058645c49d4edf303051b754f8f93c5f76c (diff) | |
download | sandhi-f84970693f4e1c9919e139c1d99daa74691b5a46.tar.gz sandhi-f84970693f4e1c9919e139c1d99daa74691b5a46.tar.bz2 sandhi-f84970693f4e1c9919e139c1d99daa74691b5a46.zip |
debug prints, minor fixes, unfinished input queue work
Diffstat (limited to 'lib/gras_impl/debug.hpp')
-rw-r--r-- | lib/gras_impl/debug.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/gras_impl/debug.hpp b/lib/gras_impl/debug.hpp index ea0d7bf..bdf1388 100644 --- a/lib/gras_impl/debug.hpp +++ b/lib/gras_impl/debug.hpp @@ -19,6 +19,10 @@ #include <iostream> +#define GENESIS 0 +#define ARMAGEDDON 0 +#define MESSAGE 1 + #define HERE() std::cerr << __FILE__ << ":" << __LINE__ << std::endl << std::flush; #define VAR(x) std::cerr << #x << " = " << (x) << std::endl << std::flush; #define ASSERT(x) if(not (x)){std::cerr << "ASSERT FAIL " << __FILE__ << ":" << __LINE__ << "\n\t" << #x << std::endl << std::flush;} |