summaryrefslogtreecommitdiff
path: root/trace.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-04-23 04:42:44 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:38:30 -0400
commit6853db57e6fdb6fd95764be1f35af0006c9e2ef9 (patch)
treebf24550cbc6053c51bf2f3fdcf27f39a4c989f24 /trace.h
parentbe9f18ccfe81acdd2f34b27352f2843235fab69b (diff)
downloadledger-6853db57e6fdb6fd95764be1f35af0006c9e2ef9.tar.gz
ledger-6853db57e6fdb6fd95764be1f35af0006c9e2ef9.tar.bz2
ledger-6853db57e6fdb6fd95764be1f35af0006c9e2ef9.zip
All tests now working again. Reduced size of entity_t and
transaction_t considerably.
Diffstat (limited to 'trace.h')
-rw-r--r--trace.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/trace.h b/trace.h
index 69909e03..e191e968 100644
--- a/trace.h
+++ b/trace.h
@@ -11,7 +11,7 @@ class timing_t;
extern bool trace_alloc_mode;
extern bool trace_class_mode;
-#if DEBUG_LEVEL >= 4
+#if 0 && DEBUG_LEVEL >= 4 && ! defined(USE_BOOST_PYTHON)
class string;
#else
typedef std::string string;
@@ -64,7 +64,7 @@ void report_memory(std::ostream& out);
#define TRACE_DTOR(cls)
#endif
-#if DEBUG_LEVEL >= 4
+#if 0 && DEBUG_LEVEL >= 4 && ! defined(USE_BOOST_PYTHON)
class string : public std::string
{