From b1e44ee9f8bda19052b37f752495a688b00a06f4 Mon Sep 17 00:00:00 2001 From: ado Date: Tue, 23 Feb 2021 21:07:02 +0100 Subject: [PATCH] try fix vs16 ci --- include/ss/extract.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/ss/extract.hpp b/include/ss/extract.hpp index 13e4ccb..be6511a 100644 --- a/include/ss/extract.hpp +++ b/include/ss/extract.hpp @@ -175,6 +175,7 @@ bool shift_and_add_overflow(T& value, T digit, F add_last_digit_owerflow) { #else #warning "Use clang or gcc if possible for performance reasons. Define SS_NO_WARNINGS to supress warning." #endif +#endif template bool shift_and_add_overflow(T& value, T digit, U is_negative) { digit = (is_negative) ? -digit : digit;