Remove unused c'tor.

llvm-svn: 346467
This commit is contained in:
Bill Wendling 2018-11-09 02:03:24 +00:00
parent 72787ac661
commit bca3c9cb2b
1 changed files with 0 additions and 2 deletions

View File

@ -46,7 +46,6 @@ namespace {
class Module {
public:
Module(llvm::StringRef Name, bool Problem);
Module();
~Module();
bool output(llvm::raw_fd_ostream &OS, int Indent);
Module *findSubModule(llvm::StringRef SubName);
@ -65,7 +64,6 @@ public:
// Constructors.
Module::Module(llvm::StringRef Name, bool Problem)
: Name(Name), IsProblem(Problem) {}
Module::Module() : IsProblem(false) {}
// Destructor.
Module::~Module() {