heck 3 years ago
parent
commit
af7cc32668
  1. 3
      src/std_utils.cc
  2. 1
      test/test_inspect.cc

3
src/std_utils.cc

@ -170,8 +170,7 @@ namespace pEp {
auto ss = ostringstream{}; auto ss = ostringstream{};
ifstream input_file(filename); ifstream input_file(filename);
if (!input_file.is_open()) { if (!input_file.is_open()) {
runtime_error e{ "Could not open the file: " + filename }; throw runtime_error ("Could not open the file: " + filename);
exit(EXIT_FAILURE);
} }
ss << input_file.rdbuf(); ss << input_file.rdbuf();
return ss.str(); return ss.str();

1
test/test_inspect.cc

@ -1,5 +1,6 @@
#include <iostream> #include <iostream>
#include <cctype> #include <cctype>
#include <cassert>
#include "../src/inspect.hh" #include "../src/inspect.hh"
#include <pEp/utils.hh> #include <pEp/utils.hh>
#include <pEp/pEpLog.hh> #include <pEp/pEpLog.hh>

Loading…
Cancel
Save