mirror of
https://github.com/red0124/ssp.git
synced 2025-01-23 13:05:20 +01:00
try fix vs16 ci
This commit is contained in:
parent
14d67d87bd
commit
b1e44ee9f8
@ -175,6 +175,7 @@ bool shift_and_add_overflow(T& value, T digit, F add_last_digit_owerflow) {
|
|||||||
#else
|
#else
|
||||||
#warning "Use clang or gcc if possible for performance reasons. Define SS_NO_WARNINGS to supress warning."
|
#warning "Use clang or gcc if possible for performance reasons. Define SS_NO_WARNINGS to supress warning."
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
template <typename T, typename U>
|
template <typename T, typename U>
|
||||||
bool shift_and_add_overflow(T& value, T digit, U is_negative) {
|
bool shift_and_add_overflow(T& value, T digit, U is_negative) {
|
||||||
digit = (is_negative) ? -digit : digit;
|
digit = (is_negative) ? -digit : digit;
|
||||||
|
Loading…
Reference in New Issue
Block a user