Skip to content

Commit

Permalink
Removing virtual destructor, not a base class
Browse files Browse the repository at this point in the history
  • Loading branch information
apathyboy committed Jun 5, 2013
1 parent 612889c commit f5cf8bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/swganh/database/database_manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class DatabaseManager : private boost::noncopyable {
*/
DatabaseManager(sql::Driver* driver, uint32_t num_threads = 1);

virtual ~DatabaseManager();
~DatabaseManager();

/*! Check to see whether a specified storage type has been registered with
* the DatabaseManager instance or not.
Expand Down
2 changes: 1 addition & 1 deletion src/swganh/tre/resource_manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace tre {
{
public:
ResourceManager(std::shared_ptr<swganh::tre::TreArchive> archive);
virtual ~ResourceManager() {}
~ResourceManager() {}

void LoadResourceByName(const std::string& name, std::shared_ptr<VisitorInterface> visitor, bool is_cached=true);

Expand Down

0 comments on commit f5cf8bf

Please sign in to comment.