fix several missing override declarations

This commit is contained in:
Jeff Epler
2022-04-12 11:20:46 -05:00
parent f2083ed5e9
commit 00d30fe26b
3 changed files with 3 additions and 3 deletions

View File

@@ -194,7 +194,7 @@ private:
_strmWriter += trackBytes;
}
operator std::string () const
operator std::string () const override
{
return fmt::format("a2r({})", _config.filename());
}

View File

@@ -84,7 +84,7 @@ public:
}
operator std::string () const
operator std::string () const override
{
return fmt::format("au({})", _config.directory());
}

View File

@@ -57,7 +57,7 @@ public:
vector.push_back(fluxmap.rawBytes());
}
operator std::string () const
operator std::string () const override
{
return fmt::format("fl2({})", _filename);
}