diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-12-08 22:39:00 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-12-22 01:21:00 +0100 |
| commit | 1e2e3a0a0eb6436d37a9bdf5058c6ac133b90001 (patch) | |
| tree | b26dc3033dc420a314e9b88a9e7327f317f1c0f6 /tools/dcpverify.cc | |
| parent | 990729f84f430dfa2788270474784011dc1f12e1 (diff) | |
Validate XML with xerces.
Diffstat (limited to 'tools/dcpverify.cc')
| -rw-r--r-- | tools/dcpverify.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/dcpverify.cc b/tools/dcpverify.cc index 0c69ba78..a050d953 100644 --- a/tools/dcpverify.cc +++ b/tools/dcpverify.cc @@ -112,7 +112,8 @@ main (int argc, char* argv[]) vector<boost::filesystem::path> directories; directories.push_back (argv[optind]); - list<dcp::VerificationNote> notes = dcp::verify (directories, bind(&stage, _1, _2), bind(&progress)); + /* XXX */ + list<dcp::VerificationNote> notes = dcp::verify (directories, bind(&stage, _1, _2), bind(&progress), "xsd"); bool failed = false; BOOST_FOREACH (dcp::VerificationNote i, notes) { |
