Remove some unnecessary std:: qualifiers.
authorCarl Hetherington <cth@carlh.net>
Tue, 12 Jan 2021 23:52:19 +0000 (00:52 +0100)
committerCarl Hetherington <cth@carlh.net>
Sun, 17 Jan 2021 19:13:23 +0000 (20:13 +0100)
src/verify.cc

index 2c0da8d7b77eb62f62c23d70c667df8fcae708a3..a1d12e9bd65564f34265c10d49c2b63e214c2fd7 100644 (file)
@@ -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
        )
 {