Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
carltimmer committed Apr 15, 2024
1 parent c046e3b commit d7149ce
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/libsrc++/EvioException.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ namespace evio {
EvioException(const std::string & msg, const char *file, int line) noexcept : std::runtime_error(msg) {
std::ostringstream o;
o << file << ":" << line << ":" << msg;
std::cerr << o.str() << std::endl;
}

};
Expand Down

0 comments on commit d7149ce

Please sign in to comment.