Sparkle 0.0.1
Loading...
Searching...
No Matches
spk_debug_macro.hpp
1#pragma once
2
3#include <iostream>
4#include <string>
5
6#define DEBUG_INFO() std::string(__FILE__) + ":" + std::to_string(__LINE__)
7#define DEBUG_LINE() std::cout << DEBUG_INFO() << std::endl