RMW desert 1.0
Loading...
Searching...
No Matches
debug.h
1#include <stdio.h>
2#include "rmw/impl/cpp/macros.hpp"
3
4#define DEBUG_ENABLED 0
5
6#if DEBUG_ENABLED
7#define DEBUG(...) printf(__VA_ARGS__)
8#else
9#define DEBUG(...)
10#endif