summaryrefslogtreecommitdiff
path: root/src/local_time.cc
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/local_time.cc
parente3b5521ac40125c3dfd9f254856cf58ea1584f79 (diff)
Put everything into dcp::dc and change DCP -> Package.
Diffstat (limited to 'src/local_time.cc')
-rw-r--r--src/local_time.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/local_time.cc b/src/local_time.cc
index b8feb849..eec053d5 100644
--- a/src/local_time.cc
+++ b/src/local_time.cc
@@ -31,7 +31,7 @@
using std::string;
using std::ostream;
using boost::lexical_cast;
-using namespace dcp;
+using namespace dcp::dc;
/** Construct a LocalTime from the current time */
LocalTime::LocalTime ()
@@ -173,7 +173,7 @@ LocalTime::operator!= (LocalTime const & other) const
}
ostream&
-dcp::operator<< (ostream& s, LocalTime const & t)
+dcp::dc::operator<< (ostream& s, LocalTime const & t)
{
s << t.as_string ();
return s;