From 29bbbc43f14127f4fdef6acdd060dec78f16ab38 Mon Sep 17 00:00:00 2001 From: Jonathan Caves <45952631+JonCavesMSFT@users.noreply.github.com> Date: Tue, 8 Feb 2022 07:03:33 -0800 Subject: [PATCH] Update pch.h Add a missing 'typename' keyword --- test/test/pch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test/pch.h b/test/test/pch.h index 916e8fe8f..65588aec3 100644 --- a/test/test/pch.h +++ b/test/test/pch.h @@ -45,4 +45,4 @@ using async_return_type = decltype(std::declval().GetResults()); template using async_progress_type = typename async_traits>::progress_type; template -inline constexpr bool has_async_progress = !std::is_same_v>::progress_type>; +inline constexpr bool has_async_progress = !std::is_same_v>::progress_type>;