mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
fix several missing override declarations
This commit is contained in:
@@ -194,7 +194,7 @@ private:
|
||||
_strmWriter += trackBytes;
|
||||
}
|
||||
|
||||
operator std::string () const
|
||||
operator std::string () const override
|
||||
{
|
||||
return fmt::format("a2r({})", _config.filename());
|
||||
}
|
||||
|
||||
@@ -84,7 +84,7 @@ public:
|
||||
|
||||
}
|
||||
|
||||
operator std::string () const
|
||||
operator std::string () const override
|
||||
{
|
||||
return fmt::format("au({})", _config.directory());
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ public:
|
||||
vector.push_back(fluxmap.rawBytes());
|
||||
}
|
||||
|
||||
operator std::string () const
|
||||
operator std::string () const override
|
||||
{
|
||||
return fmt::format("fl2({})", _filename);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user