Skip to content

Commit 67cc9fa

Browse files
authored
Add a missing 'typename' keyword (#1101)
1 parent 0b2225d commit 67cc9fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test/pch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ using async_return_type = decltype(std::declval<T>().GetResults());
4545
template<typename T>
4646
using async_progress_type = typename async_traits<std::decay_t<T>>::progress_type;
4747
template<typename T>
48-
inline constexpr bool has_async_progress = !std::is_same_v<void, async_traits<std::decay_t<T>>::progress_type>;
48+
inline constexpr bool has_async_progress = !std::is_same_v<void, typename async_traits<std::decay_t<T>>::progress_type>;

0 commit comments

Comments
 (0)