Skip to content

Commit

Permalink
Added version constant value.
Browse files Browse the repository at this point in the history
  • Loading branch information
Papa Libasse Sow committed Jan 14, 2024
1 parent 75af690 commit f70817b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/memory_units.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
#include <limits>
#include <ratio>
#include <type_traits>

#define MU_VERSION_MAJOR 1
#define MU_VERSION_MINOR 0
#define MU_VERSION_PATCH 0
#define MU_VERSION (MU_VERSION_MAJOR * 10000 + MU_VERSION_MINOR * 100 + MU_VERSION_PATCH)

namespace mu
{
using INT_UNIT_TYPE = std::uint64_t;
Expand Down

0 comments on commit f70817b

Please sign in to comment.