blob: fe1be658685238aa1167d2b70ab5e366c104da83 [file] [log] [blame]
// bindgen-flags: -- --target=x86_64-pc-win32
template<typename Method, bool Cancelable>
struct nsRunnableMethodTraits;
template<class C, typename R, bool Cancelable, typename... As>
struct nsRunnableMethodTraits<R(C::*)(As...), Cancelable>
{
static const bool can_cancel = Cancelable;
};