Small fix in given parsername

This commit is contained in:
Thomas Avé 2017-01-02 16:03:29 +01:00
parent 743f912aa3
commit a9d3fdb481
1 changed files with 8 additions and 2 deletions

View File

@ -1,7 +1,6 @@
#include "Parsodus/driver.h"
#include "Parsodus/inputparser.h"
#include "Parsodus/config.h"
#include <fstream>
namespace {
@ -26,6 +25,7 @@ namespace pds {
}
Driver::~Driver(){}
int Driver::run() {
if (!m_lexername.length()) throw DriverException("no valid lexer name possible");
if (!m_parsername.length()) throw DriverException("no valid parser name possible");
@ -35,9 +35,15 @@ namespace pds {
back->generateParser([this](std::string filename) -> std::unique_ptr<std::ostream> {
return std::unique_ptr<std::ostream>(new std::ofstream(m_outputdir + "/" + filename));
},
m_lexername, config);
m_parsername, config);
return 0;
}
DriverException::DriverException(std::string what): m_what(what) {}
const char* DriverException::what() const throw() {
return m_what.c_str();
}
}