aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-01-26 13:31:56 +0100
committerGitHub <noreply@github.com>2020-01-26 13:31:56 +0100
commitea8fd1e82c99554fdc5a0918b687b0b16b90ac89 (patch)
tree81ff5ae7a7d68a632a2273be8fc71c7e161fb5af /vespalib
parent8851b1a403cf1b842ab3310c8f5f0aa3542722e7 (diff)
parent70d0ed7f52d0540dd027fecbe59d1a564571de63 (diff)
Merge pull request #11948 from vespa-engine/toregge/add-missing-include-stdexcept-detected-by-gcc-10
Include stdexcept before using std::runtime_error
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/vespa/vespalib/util/compressor.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/vespalib/src/vespa/vespalib/util/compressor.cpp b/vespalib/src/vespa/vespalib/util/compressor.cpp
index 8dfdac5ecc7..56533a77643 100644
--- a/vespalib/src/vespa/vespalib/util/compressor.cpp
+++ b/vespalib/src/vespa/vespalib/util/compressor.cpp
@@ -5,6 +5,7 @@
#include <vespa/vespalib/util/memory.h>
#include <vespa/vespalib/util/stringfmt.h>
#include <vespa/vespalib/data/databuffer.h>
+#include <stdexcept>
using vespalib::alloc::Alloc;