summaryrefslogtreecommitdiff
path: root/flower/dstream.hh
diff options
context:
space:
mode:
Diffstat (limited to 'flower/dstream.hh')
-rw-r--r--flower/dstream.hh6
1 files changed, 4 insertions, 2 deletions
diff --git a/flower/dstream.hh b/flower/dstream.hh
index 72d0897201..aae52a7838 100644
--- a/flower/dstream.hh
+++ b/flower/dstream.hh
@@ -4,10 +4,12 @@
#define DSTREAM_HH
#include "string.hh"
-#include "assoc.hh"
const char eol= '\n';
+template<class K,class V>
+struct Assoc;
+
/// debug stream
class Dstream
{
@@ -16,7 +18,7 @@ class Dstream
bool local_silence;
String classname;
- Assoc<String, bool> silent;
+ Assoc<String, bool> *silent;
public:
bool silence(String);