summaryrefslogtreecommitdiffstats
path: root/searchsummary/src/vespa/juniper/IJuniperProperties.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchsummary/src/vespa/juniper/IJuniperProperties.h')
-rw-r--r--searchsummary/src/vespa/juniper/IJuniperProperties.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchsummary/src/vespa/juniper/IJuniperProperties.h b/searchsummary/src/vespa/juniper/IJuniperProperties.h
index 63ada17684c..4902d3d561d 100644
--- a/searchsummary/src/vespa/juniper/IJuniperProperties.h
+++ b/searchsummary/src/vespa/juniper/IJuniperProperties.h
@@ -15,7 +15,7 @@ public:
* @param def A default value for the property if not found in configuration
* @return The value of the property or @param def if no such property is set
*/
- virtual const char* GetProperty(const char* name, const char* def = nullptr) = 0;
+ virtual const char* GetProperty(const char* name, const char* def = nullptr) const = 0;
- virtual ~IJuniperProperties() {};
+ virtual ~IJuniperProperties() = default;
};