Skip to content

Commit 3b78eb2

Browse files
authored
Add a missing 'typename' keyword (#1103)
1 parent 67cc9fa commit 3b78eb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_win7/pch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ using async_return_type = decltype(std::declval<T>().GetResults());
4242
template<typename T>
4343
using async_progress_type = typename async_traits<std::decay_t<T>>::progress_type;
4444
template<typename T>
45-
inline constexpr bool has_async_progress = !std::is_same_v<void, async_traits<std::decay_t<T>>::progress_type>;
45+
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)