00001 #include "debug.h" 00002 00003 00004 #ifdef TEST 00005 00006 #include <iostream> 00007 #include <cstdlib> 00008 00009 00010 int main() { 00011 try { 00012 std::cerr << "Nothing to test in debug.cpp\n"; 00013 } catch(std::string const& err) { 00014 std::cerr << err << std::endl; 00015 return EXIT_FAILURE; 00016 } 00017 return EXIT_SUCCESS; 00018 } 00019 00020 00021 #endif//TEST 00022
1.3.6