diff options
Diffstat (limited to 'third_party/base/numerics/safe_math.h')
-rw-r--r-- | third_party/base/numerics/safe_math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/base/numerics/safe_math.h b/third_party/base/numerics/safe_math.h index a0c41a467b..8574fdd595 100644 --- a/third_party/base/numerics/safe_math.h +++ b/third_party/base/numerics/safe_math.h @@ -419,7 +419,7 @@ ChkMathOp(const L lhs, const R rhs, const Args... args) { auto tmp = ChkMathOp<M>(lhs, rhs); return tmp.IsValid() ? ChkMathOp<M>(tmp, args...) : decltype(ChkMathOp<M>(tmp, args...))(tmp); -}; +} // The following macros are just boilerplate for the standard arithmetic // operator overloads and variadic function templates. A macro isn't the nicest |