summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-11-29 00:40:46 +0100
committerCarl Hetherington <cth@carlh.net>2024-04-18 12:11:43 +0200
commit6f80712a911e90a2b8004b8345e368b4c28f4a2b (patch)
tree27927e79aa66c1fbd8749c0443673bd246db1974
parent547e30e85e4222d2c7e380bfd0db61b94886efd3 (diff)
Remove unnecessary explicit qualifier.
-rw-r--r--src/asset_reader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asset_reader.h b/src/asset_reader.h
index ac48c3f0..3bf9b8b9 100644
--- a/src/asset_reader.h
+++ b/src/asset_reader.h
@@ -94,7 +94,7 @@ private:
friend class SoundAsset;
friend class StereoJ2KPictureAsset;
- explicit AssetReader (Asset const * asset, boost::optional<Key> key, Standard standard)
+ AssetReader(Asset const * asset, boost::optional<Key> key, Standard standard)
: _crypto_context (new DecryptionContext(key, standard))
{
Kumu::FileReaderFactory factory;