summaryrefslogtreecommitdiff
path: root/src/raw_convert.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-01-05 16:55:32 +0000
committerCarl Hetherington <cth@carlh.net>2016-01-05 16:55:32 +0000
commitca5f02dbf193fa5655c57cb25be96a3c9fd05157 (patch)
treed5be6180bca64a0f4f8af9aaef2030080787fc24 /src/raw_convert.h
parente3b5521ac40125c3dfd9f254856cf58ea1584f79 (diff)
Put everything into dcp::dc and change DCP -> Package.
Diffstat (limited to 'src/raw_convert.h')
-rw-r--r--src/raw_convert.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/raw_convert.h b/src/raw_convert.h
index 90737c0c..b5766674 100644
--- a/src/raw_convert.h
+++ b/src/raw_convert.h
@@ -24,6 +24,7 @@
#include <iomanip>
namespace dcp {
+namespace dc {
/** A sort-of version of boost::lexical_cast that does uses the "C"
* locale (i.e. no thousands separators and a . for the decimal separator).
@@ -41,6 +42,7 @@ raw_convert (Q v, int precision = 16)
return r;
}
-};
+}
+}
#endif