aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/algorithm.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/common/algorithm.h b/common/algorithm.h
index be810d6e9d..fa9d08b380 100644
--- a/common/algorithm.h
+++ b/common/algorithm.h
@@ -234,6 +234,11 @@ void sort(T first, T last) {
sort(first, last, Common::Less<typename T::ValueType>());
}
+// MSVC is complaining about the minus operator being applied to an unsigned type
+// We disable this warning for the affected section of code
+#pragma warning(push)
+#pragma warning(disable: 4146)
+
/**
* Euclid's algorithm to compute the greatest common divisor.
*/
@@ -256,6 +261,8 @@ T gcd(T a, T b) {
return b;
}
+#pragma warning(pop)
+
} // End of namespace Common
#endif