From 5f4c90c2ea2912ddce7122262f1768dea91bfc69 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Wed, 31 Jan 2024 15:19:24 -0800 Subject: [PATCH] test --- ebml/EbmlDummy.h | 2 +- src/EbmlDummy.cpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ebml/EbmlDummy.h b/ebml/EbmlDummy.h index f4deabb2..312085d3 100644 --- a/ebml/EbmlDummy.h +++ b/ebml/EbmlDummy.h @@ -14,7 +14,7 @@ namespace libebml { class EBML_DLL_API EbmlDummy : public EbmlBinary { public: - EbmlDummy(const EbmlId & aId) : EbmlBinary(EbmlDummy::ClassInfos), DummyId(aId) {} + EbmlDummy(const EbmlId & aId); bool IsDummy() const override {return true;} bool IsDefaultValue() const override {return true;} diff --git a/src/EbmlDummy.cpp b/src/EbmlDummy.cpp index 0b07c0ff..5f250822 100644 --- a/src/EbmlDummy.cpp +++ b/src/EbmlDummy.cpp @@ -14,6 +14,8 @@ static constexpr EbmlDocVersion AllEbmlVersions{}; DEFINE_EBML_CLASS_ORPHAN(EbmlDummy, 0xFF, "DummyElement", AllEbmlVersions ) +EbmlDummy::EbmlDummy(const EbmlId & aId) : EbmlBinary(EbmlDummy::ClassInfos), DummyId(aId) {} + const EbmlId EbmlDummy::DummyRawId = Id_EbmlDummy; } // namespace libebml