Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahm-LANL committed Jan 19, 2023
1 parent e85f1ed commit b2b2a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ports-of-call/portable_errors.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ inline void require(bool condition_bool, const char *const condition,
int const linenumber) {
require(condition_bool, condition, message.c_str(), filename, linenumber);
}
inline void require(cool condition_bool, const char *const condition,
inline void require(bool condition_bool, const char *const condition,
std::stringstream const &message,
const char *const filename, int const linenumber) {
require(condition, condition, message.str().c_str(), filename, linenumber);
Expand Down

0 comments on commit b2b2a0a

Please sign in to comment.