You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#pragma clang diagnostic push // This appears to be a detection bug with constexpr variables in Clang9
260
260
#pragma clang diagnostic ignored "-Wunused-lambda-capture" // error : lambda capture 'howMany' is not required to be captured for this use[-Werror, -Wunused - lambda - capture]
261
+
#elif defined(_MSC_VER)
262
+
#pragma warning(push)
263
+
#pragma warning(disable : 5258) // warning C5258: explicit capture of 'howMany' is not required for this use
0 commit comments