Skip to content
Snippets Groups Projects
Commit e5b48cc7 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'clang.RDBAccessSvc-20170911' into 'master'

RDBAccessSvc: Fix clang warning.

See merge request !4586
parents c5a68b23 bc5603b0
No related merge requests found
......@@ -34,15 +34,15 @@ class RDBQuery final : public IRDBQuery
const std::string& nodeName,
const std::string& tagId);
~RDBQuery() override;
virtual ~RDBQuery() override;
void execute() override;
long size() override;
void finalize() override;
void setOrder(const std::string&) override;
void addToOutput(const std::string&) override;
virtual void execute() override;
virtual long size() override;
virtual void finalize() override;
virtual void setOrder(const std::string&) override;
virtual void addToOutput(const std::string&) override;
bool next();
virtual bool next() override;
private:
RDBQuery() {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment