1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00
Files
tracy/profiler/src/WaylandMethod.hpp
T
2024-01-30 19:23:51 +01:00

9 lines
200 B
C++

#ifndef __WAYLANDMETHOD_HPP__
#define __WAYLANDMETHOD_HPP__
#include <assert.h>
#define Method( func ) [](void* ptr, auto... args) { assert( ptr ); ((decltype(this))ptr)->func( args... ); }
#endif