Skip to content

Commit 803f5bc

Browse files
authored
Merge pull request #71 from E49869826/master
Fix to_unsigned_t
2 parents d1e591a + 0ed7f0a commit 803f5bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/atcoder/internal_type_traits.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ when not declared ATCODER_INTERNAL_TYPE_TRAITS_HPP:
9292
#
9393
#template <class T> using to_unsigned_t = typename to_unsigned<T>::type;
9494

95-
template to_unsigned_t*(T):typed = to_unsigned(T)
95+
template to_unsigned_t*(T:typedesc):typedesc = to_unsigned(T)
9696

9797
#
9898
#} // namespace internal

0 commit comments

Comments
 (0)