aboutsummaryrefslogtreecommitdiffstats
path: root/document
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-04-19 14:10:49 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-04-19 14:10:49 +0000
commitd89395263f2bff208c76b8fc5a9d72cfe49f2ed7 (patch)
treebc2c99ac05e55b9579298e1ce78433ea178d7731 /document
parenta804573369bf69193d47cd1b2fa9483634ed9d35 (diff)
Add noexcept
Diffstat (limited to 'document')
-rw-r--r--document/src/vespa/document/update/fieldpathupdate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/document/src/vespa/document/update/fieldpathupdate.h b/document/src/vespa/document/update/fieldpathupdate.h
index f8312e490c1..fb205b67a60 100644
--- a/document/src/vespa/document/update/fieldpathupdate.h
+++ b/document/src/vespa/document/update/fieldpathupdate.h
@@ -31,7 +31,7 @@ public:
virtual ~FieldPathUpdate();
- FieldPathUpdateType type() const { return _type; }
+ FieldPathUpdateType type() const noexcept { return _type; }
void applyTo(Document& doc) const;
virtual bool operator==(const FieldPathUpdate& other) const;