mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
9 lines
200 B
C++
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
|