fix mismatched parantheses

This commit is contained in:
RealKC 2020-01-24 21:46:59 +02:00 committed by GitHub
parent a8ec04ab4b
commit 06a82e38bc
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -407,7 +407,7 @@ template<class T> struct mi_stl_allocator {
#endif
size_type max_size() const mi_attr_noexcept { return (std::numeric_limits<difference_type>::max() / sizeof(value_type)); }
#if (__cplusplus >= 201103L) || (_MSC_VER > 1900)) // C++11
#if ((__cplusplus >= 201103L) || (_MSC_VER > 1900)) // C++11
pointer address(reference x) const mi_attr_noexcept { return std::addressof(x); }
const_pointer address(const_reference x) const mi_attr_noexcept { return std::addressof(x); }
#else