symbol-processor/data/out.cpp

9 lines
207 B
C++
Raw Normal View History

2024-07-14 09:03:18 +00:00
#include "{{ headerPath }}"
2024-08-02 01:57:31 +00:00
// Thunk Template
template <auto *const *func>
decltype(auto) __thunk(auto... args) {
return (*func)->get_thunk_target()(std::forward<decltype(args)>(args)...);
}
2024-07-14 09:03:18 +00:00
2024-07-17 10:40:04 +00:00
{{ main }}