1 --- src/client/linux/handler/exception_handler.cc
2 +++ src/client/linux/handler/exception_handler.cc
4 // SIGSTKSZ may be too small to prevent the signal handlers from overrunning
5 // the alternative stack. Ensure that the size of the alternative stack is
7 - static const unsigned kSigStackSize = std::max(16384, SIGSTKSZ);
8 + static const unsigned kSigStackSize = std::max<decltype(SIGSTKSZ)>(16384, SIGSTKSZ);
10 // Only set an alternative stack if there isn't already one, or if the current