Remove unused version constructor.

This commit is contained in:
Oliver Hamlet
2015-06-13 23:09:48 +01:00
parent 22a6db1ad3
commit 4c7f60a3c3
2 changed files with 0 additions and 5 deletions
-2
View File
@@ -96,8 +96,6 @@ namespace loot {
#endif
}
Version::Version(const Plugin& plugin) : verString(plugin.Version()) {}
string Version::AsString() const {
return verString;
}
-3
View File
@@ -25,8 +25,6 @@
#ifndef __LOOT_VERSION__
#define __LOOT_VERSION__
#include "plugin/plugin.h"
#include <string>
#include <boost/filesystem.hpp>
@@ -39,7 +37,6 @@ namespace loot {
Version();
Version(const std::string& ver);
Version(const boost::filesystem::path& file);
Version(const Plugin& plugin);
std::string AsString() const;