summaryrefslogtreecommitdiffstats
path: root/sc/inc/calcmacros.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-07-17 11:06:15 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-07-24 23:29:26 -0400
commita4728e2de0d3acc6685b1e0ba0fb4606fdbea3e7 (patch)
treef1c6353cf6a3d2be3762a51b08250b307241d1b5 /sc/inc/calcmacros.hxx
parentMore on removing CalcAbsIfRel(). (diff)
downloadcore-a4728e2de0d3acc6685b1e0ba0fb4606fdbea3e7.tar.gz
core-a4728e2de0d3acc6685b1e0ba0fb4606fdbea3e7.zip
Add dumping capability for ScTokenArray (for debugging).
Change-Id: Ib3f6a87936a6c00b503f5d72b16b3e4712d7d762
Diffstat (limited to 'sc/inc/calcmacros.hxx')
-rw-r--r--sc/inc/calcmacros.hxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/sc/inc/calcmacros.hxx b/sc/inc/calcmacros.hxx
index 03ca5909efce..21a51fbba63c 100644
--- a/sc/inc/calcmacros.hxx
+++ b/sc/inc/calcmacros.hxx
@@ -12,11 +12,15 @@
#define DEBUG_COLUMN_STORAGE 0
#define DEBUG_PIVOT_TABLE 0
+#define DEBUG_FORMULA_COMPILER 1
-#if DEBUG_PIVOT_TABLE
+#if DEBUG_PIVOT_TABLE || DEBUG_COLUMN_STORAGE || DEBUG_FORMULA_COMPILER
#include <iostream>
#include <string>
#include <cstdio>
+using std::cout;
+using std::cerr;
+using std::endl;
#endif
#endif