diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-09-04T21·06+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-09-04T21·06+0000 |
commit | 75068e7d753cf6cbe45a4bf294000dca9bd41d8b (patch) | |
tree | c6274cc10caab08349b5585206034f41ca4a575f /src/libexpr/expr-to-xml.hh | |
parent | aab88127321344d5818d823bff515d127108d058 (diff) |
* Use a proper namespace.
* Optimise header file usage a bit. * Compile the parser as C++.
Diffstat (limited to 'src/libexpr/expr-to-xml.hh')
-rw-r--r-- | src/libexpr/expr-to-xml.hh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libexpr/expr-to-xml.hh b/src/libexpr/expr-to-xml.hh index 56f947e520de..6b95c88f5909 100644 --- a/src/libexpr/expr-to-xml.hh +++ b/src/libexpr/expr-to-xml.hh @@ -6,8 +6,10 @@ #include "nixexpr.hh" +namespace nix { -void printTermAsXML(Expr e, ostream & out); - +void printTermAsXML(Expr e, std::ostream & out); + +} #endif /* !__EXPR_TO_XML_H */ |