summaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/detect_type_benchmark
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2020-10-11 21:49:14 +0200
committerTor Egge <Tor.Egge@broadpark.no>2020-10-11 21:49:14 +0200
commit2336277e700ec5ea9aa7582e93000cece7f7b120 (patch)
treeb267bfd1cabb3d9423ba2509c2bf299a803081d1 /vespalib/src/tests/detect_type_benchmark
parent982a1b1804b8773be2c5db13535fa0b0e33928b1 (diff)
Eliminate noexcept warnings.
Diffstat (limited to 'vespalib/src/tests/detect_type_benchmark')
-rw-r--r--vespalib/src/tests/detect_type_benchmark/detect_type_benchmark.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/tests/detect_type_benchmark/detect_type_benchmark.cpp b/vespalib/src/tests/detect_type_benchmark/detect_type_benchmark.cpp
index 6d178093069..71c4a7856c8 100644
--- a/vespalib/src/tests/detect_type_benchmark/detect_type_benchmark.cpp
+++ b/vespalib/src/tests/detect_type_benchmark/detect_type_benchmark.cpp
@@ -57,7 +57,7 @@ struct CheckType {
};
struct Nop {
- void operator()() const {}
+ void operator()() const noexcept {}
};
//-----------------------------------------------------------------------------