Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove deprecated EbmlCodeDate string #287

Merged
merged 1 commit into from
Mar 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion ebml/EbmlVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ namespace libebml {
#define LIBEBML_VERSION 0x020000

extern const EBML_DLL_API std::string EbmlCodeVersion;
extern const EBML_DLL_API std::string EbmlCodeDate;

/*!
\todo Closer relation between an element and the context it comes from (context is an element attribute ?)
Expand Down
5 changes: 0 additions & 5 deletions src/EbmlVersion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,4 @@ namespace libebml {

const std::string EbmlCodeVersion = "2.0.0";

// Up to version 1.3.3 this library exported a build date string. As
// this made the build non-reproducible, replace it by a placeholder to
// remain API compatible.
const std::string EbmlCodeDate = "Unknown";

} // namespace libebml