2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-03-16 18:03:03 +00:00

fix: clang compilation issues

This commit is contained in:
Jan Laupetin
2026-01-27 19:04:58 +01:00
parent c602170fb3
commit 38038f8fad
5 changed files with 8 additions and 8 deletions

View File

@@ -13,8 +13,8 @@ public:
virtual ~ContentWriterBase() = default;
ContentWriterBase(const ContentWriterBase& other) = default;
ContentWriterBase(ContentWriterBase&& other) noexcept = default;
ContentWriterBase& operator=(const ContentWriterBase& other) = default;
ContentWriterBase& operator=(ContentWriterBase&& other) noexcept = default;
ContentWriterBase& operator=(const ContentWriterBase& other) = delete;
ContentWriterBase& operator=(ContentWriterBase&& other) noexcept = delete;
protected:
void WriteXString(bool atStreamStart);