···11+diff --git a/source/thirdparty/breakpad/src/client/linux/handler/exception_handler.cc b/source/thirdparty/breakpad/src/client/linux/handler/exception_handler.cc
22+index ca353c4099..499be0a986 100644
33+--- a/source/thirdparty/breakpad/src/client/linux/handler/exception_handler.cc
44++++ b/source/thirdparty/breakpad/src/client/linux/handler/exception_handler.cc
55+@@ -138,7 +138,7 @@ void InstallAlternateStackLocked() {
66+ // SIGSTKSZ may be too small to prevent the signal handlers from overrunning
77+ // the alternative stack. Ensure that the size of the alternative stack is
88+ // large enough.
99+- static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ);
1010++ const unsigned kSigStackSize = std::max<unsigned>(16384, SIGSTKSZ);
1111+1212+ // Only set an alternative stack if there isn't already one, or if the current
1313+ // one is too small.