summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-02-24 21:36:54 +0100
committerCarl Hetherington <cth@carlh.net>2024-02-25 19:58:13 +0100
commit17932886d5c97de1aec6de6c6e4fb57aa456bf3e (patch)
treee57551d7e3ba8bfc13e788c7bacb9f0cb6655531
parent25c94845432db88a7ee3db459559eb555b8630b0 (diff)
Reduce some general usings a bit.
-rw-r--r--src/dcp_time.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/dcp_time.cc b/src/dcp_time.cc
index 0bd0a409..e21eaf27 100644
--- a/src/dcp_time.cc
+++ b/src/dcp_time.cc
@@ -49,8 +49,11 @@
#include <cmath>
-using namespace std;
-using namespace boost;
+using std::ostream;
+using std::string;
+using std::vector;
+using boost::is_any_of;
+using boost::optional;
using namespace dcp;