diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-02-22 23:17:02 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-03-20 18:25:09 +0100 |
| commit | 79904ec4669a60932004daf35256565aefa0c392 (patch) | |
| tree | 87568abeb5f4e4738d451ebd00cdfd5b6f0d7410 /src/lib | |
| parent | 0e5013e1a96af81e4b501ff0c3192c10a061a2c8 (diff) | |
Cleanup: clarify some namespace use.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/dcp_content_type.cc | 3 | ||||
| -rw-r--r-- | src/lib/filter.cc | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/dcp_content_type.cc b/src/lib/dcp_content_type.cc index bc9bf0d67..d689f138c 100644 --- a/src/lib/dcp_content_type.cc +++ b/src/lib/dcp_content_type.cc @@ -28,8 +28,9 @@ #include "i18n.h" +using std::string; +using std::vector; using boost::optional; -using namespace std; vector<DCPContentType> DCPContentType::_dcp_content_types; diff --git a/src/lib/filter.cc b/src/lib/filter.cc index 9a14795ec..465b5991a 100644 --- a/src/lib/filter.cc +++ b/src/lib/filter.cc @@ -37,7 +37,8 @@ LIBDCP_ENABLE_WARNINGS #include "i18n.h" -using namespace std; +using std::string; +using std::vector; using boost::optional; |
