From cb34adc3e92018c6f6205a420aea02a8d57993ec Mon Sep 17 00:00:00 2001 From: Fabian Posch Date: Thu, 11 Jan 2024 13:51:42 -0500 Subject: [PATCH] fix missing semicolon --- include/db_types.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/db_types.hpp b/include/db_types.hpp index 5fd0c08..5dcff65 100644 --- a/include/db_types.hpp +++ b/include/db_types.hpp @@ -123,7 +123,7 @@ inline std::string to_string(JobStatusType const &value) { inline std::ostream& operator<<(std::ostream& os, JobStatusType const &rhs) { os << to_string(rhs); return os; -} +}; // macro for registering enum classes for PQXX