fix: add includes to macros

This commit is contained in:
Max Luebke 2023-08-09 14:16:09 +02:00
parent 8707da42c3
commit 20db291bae

View File

@ -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 <iostream>
#include <string>
// Prepend "msg" with name of calling function
#define MSG(msg) std::cout << "CPP: " << __func__ << ": " << std::string(msg) << std::endl;