Skip to content

Commit

Permalink
support 64-bit Tag
Browse files Browse the repository at this point in the history
  • Loading branch information
alan23273850 committed Aug 22, 2024
1 parent 6f5b844 commit 1dc39c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/autoq/aut_description.hh
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ public: // data types
typedef std::set<State> StateSet;

typedef TT Symbol;
typedef unsigned Tag;
inline static constexpr auto Tag_MAX = 1 << (std::numeric_limits<Tag>::digits - 1);
typedef unsigned long long Tag;
inline static constexpr auto Tag_MAX = 1LL << (std::numeric_limits<Tag>::digits - 1);
typedef std::pair<Symbol, Tag> stdpairSymbolTag;
struct SymbolTag : stdpairSymbolTag {
using stdpairSymbolTag::stdpairSymbolTag; // inherit parent constructors
Expand Down

0 comments on commit 1dc39c3

Please sign in to comment.