Skip to content

Commit

Permalink
add #include <stdexcept>
Browse files Browse the repository at this point in the history
  • Loading branch information
griffan committed Apr 30, 2017
1 parent c90e24b commit da4e656
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include "params.h"
#include "SVDcalculator.h"
#include "PhoneHome.h"
#include <stdexcept>


int execute(int argc, char** argv);
Expand All @@ -49,7 +50,7 @@ int main(int argc, char** argv) {
std::string errorMsg = "Exiting due to ERROR:\n\t";
errorMsg += e.what();
std::cerr << errorMsg << std::endl;
return(-1);
return returnVal;
}
compStatus = returnVal;
PhoneHome::completionStatus(compStatus.c_str(),"VerifyBamID2");
Expand Down

0 comments on commit da4e656

Please sign in to comment.