From 20db291baef494770d1c4a7ab58f63cf82812fcc Mon Sep 17 00:00:00 2001 From: Max Luebke Date: Wed, 9 Aug 2023 14:16:09 +0200 Subject: [PATCH] fix: add includes to macros --- include/poet/Macros.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/poet/Macros.hpp b/include/poet/Macros.hpp index f632ea3ee..47beeeae3 100644 --- a/include/poet/Macros.hpp +++ b/include/poet/Macros.hpp @@ -1,7 +1,10 @@ -// Time-stamp: "Last modified 2023-08-09 12:10:57 delucia" +// Time-stamp: "Last modified 2023-08-09 14:16:04 mluebke" #ifndef MACROS_H #define MACROS_H +#include +#include + // Prepend "msg" with name of calling function #define MSG(msg) std::cout << "CPP: " << __func__ << ": " << std::string(msg) << std::endl;