mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 18:51:46 +00:00
12 lines
202 B
C++
12 lines
202 B
C++
|
#ifndef __TRACYPRINT_HPP__
|
||
|
#define __TRACYPRINT_HPP__
|
||
|
|
||
|
#ifdef TRACY_VERBOSE
|
||
|
# include <stdio.h>
|
||
|
# define TracyDebug(...) fprintf( stderr, __VA_ARGS__ );
|
||
|
#else
|
||
|
# define TracyDebug(...)
|
||
|
#endif
|
||
|
|
||
|
#endif
|