summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-13 00:52:19 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-17 20:13:23 +0100
commit845a6f2855541112e33ba6b07ea8e7e641c1b0d0 (patch)
tree273bc170828e6d0639bfe60e6d7205a473004b5f /src
parentdde186a4c30f066c4bea7bb120ceb130f83faf90 (diff)
Remove some unnecessary std:: qualifiers.
Diffstat (limited to 'src')
-rw-r--r--src/verify.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/verify.cc b/src/verify.cc
index 2c0da8d7..a1d12e9b 100644
--- a/src/verify.cc
+++ b/src/verify.cc
@@ -262,7 +262,7 @@ parse (XercesDOMParser& parser, boost::filesystem::path xml)
static void
-parse (XercesDOMParser& parser, std::string xml)
+parse (XercesDOMParser& parser, string xml)
{
xercesc::MemBufInputSource buf(reinterpret_cast<unsigned char const*>(xml.c_str()), xml.size(), "");
parser.parse(buf);
@@ -758,7 +758,7 @@ check_text_timing (
vector<shared_ptr<dcp::Reel>> reels,
optional<int> picture_frame_rate,
vector<VerificationNote>& notes,
- std::function<std::string (shared_ptr<dcp::Reel>)> xml,
+ std::function<string (shared_ptr<dcp::Reel>)> xml,
std::function<int64_t (shared_ptr<dcp::Reel>)> duration
)
{