Auto reformatted the base, ref #470

This commit is contained in:
emeric
2024-05-24 23:31:52 +02:00
parent 83b868673c
commit 39941d90a3
460 changed files with 8583 additions and 8514 deletions
+3 -2
View File
@@ -30,7 +30,8 @@ namespace lms::image
class SvgImage : public IEncodedImage
{
public:
SvgImage(std::vector<std::byte>&& data) : _data{ std::move(data) } {}
SvgImage(std::vector<std::byte>&& data)
: _data{ std::move(data) } {}
const std::byte* getData() const { return &_data.front(); }
std::size_t getDataSize() const { return _data.size(); }
@@ -39,4 +40,4 @@ namespace lms::image
private:
const std::vector<std::byte> _data;
};
}
} // namespace lms::image