From: Amos Jeffries Date: Sun, 14 Jan 2018 00:01:56 +0000 (+1300) Subject: Bug 4805: add missing include for stdexcept (#124) X-Git-Tag: M-staged-PR71~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=205f23455383421e227ad59211fca3eb40fe52c5;p=thirdparty%2Fsquid.git Bug 4805: add missing include for stdexcept (#124) Now that TextException inherits from std::runtime_error we have to include the definitions from stdexcept. The exception include only defines std::exception base class. --- diff --git a/src/base/TextException.h b/src/base/TextException.h index 924e093d0b..687081ba62 100644 --- a/src/base/TextException.h +++ b/src/base/TextException.h @@ -11,7 +11,7 @@ #include "base/Here.h" -#include +#include class SBuf;