summaryrefslogtreecommitdiffstats
path: root/storageapi
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@yahoo-inc.com>2017-05-05 13:39:31 +0000
committerTor Brede Vekterli <vekterli@yahoo-inc.com>2017-05-05 13:40:02 +0000
commit6b786cf7b9a996ad1854615bd05f3debdfdffe15 (patch)
tree15dba1b1ad46c653fdb969978d547be2bce4a423 /storageapi
parent77c3ba555239462ab78b09cf4cb01479c5d65f37 (diff)
Fix remaining inline warnings for compilation with -Og
Diffstat (limited to 'storageapi')
-rw-r--r--storageapi/src/vespa/storageapi/message/visitor.cpp3
-rw-r--r--storageapi/src/vespa/storageapi/message/visitor.h1
2 files changed, 4 insertions, 0 deletions
diff --git a/storageapi/src/vespa/storageapi/message/visitor.cpp b/storageapi/src/vespa/storageapi/message/visitor.cpp
index db98733c798..b61a3706bcd 100644
--- a/storageapi/src/vespa/storageapi/message/visitor.cpp
+++ b/storageapi/src/vespa/storageapi/message/visitor.cpp
@@ -182,6 +182,9 @@ VisitorInfoCommand::VisitorInfoCommand()
{
}
+VisitorInfoCommand::~VisitorInfoCommand() {
+}
+
void
VisitorInfoCommand::print(std::ostream& out, bool verbose,
const std::string& indent) const
diff --git a/storageapi/src/vespa/storageapi/message/visitor.h b/storageapi/src/vespa/storageapi/message/visitor.h
index 66bd31b9825..44362853566 100644
--- a/storageapi/src/vespa/storageapi/message/visitor.h
+++ b/storageapi/src/vespa/storageapi/message/visitor.h
@@ -215,6 +215,7 @@ private:
public:
VisitorInfoCommand();
+ ~VisitorInfoCommand();
void setErrorCode(const ReturnCode& code) { _error = code; }
void setCompleted() { _completed = true; }