diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-07-10 01:24:48 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-07-10 01:24:48 +0200 |
| commit | 13154bc1a9b341f46994607fdde2e725444a6e21 (patch) | |
| tree | 3fcf211b397092798b2aa39af4cc567d146a574c /src/asset_factory.cc | |
| parent | 9853cbf566fdfdea096333c4caa788c29fa5c57b (diff) | |
Remove String namespace from around compose().compose
Diffstat (limited to 'src/asset_factory.cc')
| -rw-r--r-- | src/asset_factory.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asset_factory.cc b/src/asset_factory.cc index 0b6c9ad5..261568e5 100644 --- a/src/asset_factory.cc +++ b/src/asset_factory.cc @@ -93,7 +93,7 @@ dcp::asset_factory (boost::filesystem::path path, bool ignore_incorrect_picture_ case ASDCP::ESS_DCDATA_DOLBY_ATMOS: return make_shared<AtmosAsset>(path); default: - throw ReadError (String::compose("Unknown MXF essence type %1 in %2", static_cast<int>(type), path.string())); + throw ReadError (compose("Unknown MXF essence type %1 in %2", static_cast<int>(type), path.string())); } return {}; |
