Skip to content

Commit

Permalink
Version increment
Browse files Browse the repository at this point in the history
  • Loading branch information
tlk00 committed Jul 3, 2021
1 parent f56d513 commit dd02920
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/bmconst.h
Original file line number Diff line number Diff line change
Expand Up @@ -223,13 +223,13 @@ enum null_support
*/
template<bool T> struct _copyright
{
static const char _p[];
static const unsigned _v[3];
static const char _p[]; ///< Version as a text
static const unsigned _v[3]; ///< MAJOR.MINOR.PATCH version components
};

template<bool T> const char _copyright<T>::_p[] =
"BitMagic C++ Library. v.7.3.3 (c) 2002-2021 Anatoliy Kuznetsov.";
template<bool T> const unsigned _copyright<T>::_v[3] = {7, 3, 3};
"BitMagic C++ Library. v.7.4.0 (c) 2002-2021 Anatoliy Kuznetsov.";
template<bool T> const unsigned _copyright<T>::_v[3] = {7, 4, 0};



Expand Down

0 comments on commit dd02920

Please sign in to comment.