about summary refs log tree commit diff
path: root/src/nix-store/dotgraph.hh
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2006-09-04T21·06+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2006-09-04T21·06+0000
commit75068e7d753cf6cbe45a4bf294000dca9bd41d8b (patch)
treec6274cc10caab08349b5585206034f41ca4a575f /src/nix-store/dotgraph.hh
parentaab88127321344d5818d823bff515d127108d058 (diff)
* Use a proper namespace.
* Optimise header file usage a bit.
* Compile the parser as C++.

Diffstat (limited to 'src/nix-store/dotgraph.hh')
-rw-r--r--src/nix-store/dotgraph.hh6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/nix-store/dotgraph.hh b/src/nix-store/dotgraph.hh
index 9effa5a884..2318e2fde4 100644
--- a/src/nix-store/dotgraph.hh
+++ b/src/nix-store/dotgraph.hh
@@ -1,8 +1,12 @@
 #ifndef __DOTGRAPH_H
 #define __DOTGRAPH_H
 
-#include "util.hh"
+#include "types.hh"
+
+namespace nix {
 
 void printDotGraph(const PathSet & roots);
 
+}
+
 #endif /* !__DOTGRAPH_H */