The feature gate for the issue is #![feature(c_variadic_naked_functions)]. This feature allows naked c-variadic function definitions with any ABI that is supported for foreign c-variadic functions.
I noticed an Access Violation causing my app to crash. I added some debug lines to cdata_meta::gc() so it reports which object it is trying to collect before it crashes. After hours of digging the ...
Currently I've written up some C++11 code that uses variadic templates to allow for a variable number of arguments with type information. This code works fine as is, but now I've realized that ...
A meta-program is "executed" as the result of template instantiation (therefore, before compiled code is produced). Meta-program results are then compiled and merged into object code, including any ...