Skip to content

Commit

Permalink
add missing definition for EbmlDate with a default value
Browse files Browse the repository at this point in the history
Even if we don't use it.
  • Loading branch information
robUx4 committed Jan 1, 2024
1 parent 9fbef34 commit 32fbcd2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ebml/EbmlElement.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ class EbmlElement;
#define DEFINE_xxx_FLOAT_DEF(x,id,idl,parent,name,global,defval) \
DEFINE_xxx_CLASS_BASE_DEFAULT(x,EbmlFloat,id,idl,parent,name,global,defval)

#define DEFINE_xxx_DATE_DEF(x,id,idl,parent,name,global,defval) \
DEFINE_xxx_CLASS_BASE_DEFAULT(x,EbmlDate,id,idl,parent,name,global,defval)

#define DEFINE_xxx_CLASS_ORPHAN(x,id,idl,name,global) \
constexpr const libebml::EbmlId Id_##x (id, idl); \
const libebml::EbmlSemanticContext Context_##x = libebml::EbmlSemanticContext(0, nullptr, nullptr, global, nullptr); \
Expand Down

0 comments on commit 32fbcd2

Please sign in to comment.