From b2b2a0af10ba9b9d76e50dd02eda06199cee958c Mon Sep 17 00:00:00 2001 From: Jonah Maxwell Miller Date: Wed, 18 Jan 2023 19:00:17 -0700 Subject: [PATCH] typo --- ports-of-call/portable_errors.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports-of-call/portable_errors.hpp b/ports-of-call/portable_errors.hpp index 6cd6045f..ca51b52b 100644 --- a/ports-of-call/portable_errors.hpp +++ b/ports-of-call/portable_errors.hpp @@ -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);