VIPRA Documentation
Loading...
Searching...
No Matches
include
vipra
debug
debug_do.hpp
1
#pragma once
2
3
namespace
VIPRA::Debug {
4
9
#ifdef VIPRA_DEBUG_MODE
10
template
<
typename
func_t>
11
void
debug_do(func_t&& func)
12
{
13
func();
14
}
15
#else
16
template
<
typename
func_t>
17
void
debug_do(func_t&&
/*unused*/
)
18
{
19
}
20
#endif
21
}
// namespace VIPRA::Debug
Generated by
1.13.2