source: src/examples/gc_no_raii/src/tools/print.h@ a2b2761

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new stuck-waitfor-destruct with_gc
Last change on this file since a2b2761 was a2b2761, checked in by Thierry Delisle <tdelisle@…>, 10 years ago

moved files src dir and added cofigurations to run preprocessor on cfiles

  • Property mode set to 100644
File size: 159 bytes
Line 
1#pragma once
2
3#if _DEBUG
4
5#include "fstream.h"
6
7extern ofstream *sout;
8
9#define DEBUG_OUT(x) sout | x | endl;
10
11#else
12
13#define DEBUG_OUT(x)
14
15#endif //NO_CHECKS
Note: See TracBrowser for help on using the repository browser.