dbms: tiny fixes [#CONV-2944].

This commit is contained in:
Alexey Milovidov 2012-11-19 03:38:13 +00:00
parent 2f5c9b3532
commit 7f2fe9f936
2 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,7 @@ public:
/// Получить результат
virtual Field getResult() const = 0;
virtual ~IAggregateFunction() {};
};

View File

@ -87,6 +87,7 @@ class IConnectionPool : private boost::noncopyable
public:
typedef detail::ConnectionPoolEntry Entry;
virtual Entry get() = 0;
virtual ~IConnectionPool() {}
};
typedef SharedPtr<IConnectionPool> ConnectionPoolPtr;