XTE _ FWD ()
Defined in header <xte/preproc/fwd.hpp> Replaces
std ::forward ().Definition
#define XTE_FWD (... )static_cast <decltype (__VA_ARGS__ )&& >(__VA_ARGS__ )
Example
[View in Compiler Explorer]void foo (int&& ) {}void bar (auto&& x ) {foo (XTE_FWD (x )); }int main () {bar (0 ); }