Skip to content

Commit

Permalink
compilation fix for gcc and clang
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravenwater committed Nov 26, 2023
1 parent 7da47ef commit 9a01462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/universal/number/einteger/manipulators.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ template<typename ElasticIntegerType,
std::enable_if_t< is_einteger<ElasticIntegerType>, bool> = true>
std::string type_tag(const ElasticIntegerType & = {}) {
std::stringstream s;
s << "einteger<" << typeid(ElasticIntegerType::bt).name() << '>';
s << "einteger<" << typeid(typename ElasticIntegerType::bt).name() << '>';
return s.str();
}

Expand Down

0 comments on commit 9a01462

Please sign in to comment.