Skip to content
Snippets Groups Projects
Commit 518f7335 authored by Martin Beseda's avatar Martin Beseda
Browse files

FIX: Fixed missing <cassert> header

parent 815a5aa6
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,8 @@
#ifndef PROJECT_MESSAGE_H
#define PROJECT_MESSAGE_H
#include <cassert>
#define MSG_INFO(str) std::cout << "INFO: " << str << std::endl;
#define MSG_DEBUG(str) assert(std::cerr << "DEBUG:" << str << std::endl);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment