Skip to content

Commit

Permalink
Debug ビルドの問題を回避
Browse files Browse the repository at this point in the history
  • Loading branch information
haruyama committed Mar 31, 2021
1 parent daa4a4c commit 91fd766
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions include/shiguredo/mp4/constants.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ class Constants {
public:
static const std::uint64_t SMALL_HEADER_SIZE = 8;
static const std::uint64_t LARGE_HEADER_SIZE = 16;
static const std::uint64_t VERSION_YEAR = 2021;
static const std::uint64_t VERSION_NUMBER_OF_RELEASES = 2;
};

} // namespace shiguredo::mp4
2 changes: 1 addition & 1 deletion src/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace shiguredo::mp4 {

std::string get_version_string() {
return fmt::format("{}.{}", Constants::VERSION_YEAR, Constants::VERSION_NUMBER_OF_RELEASES);
return "2021.2";
}

} // namespace shiguredo::mp4

0 comments on commit 91fd766

Please sign in to comment.