Files
pybind11/include/pybind11
Jason Rhinelander 926e2cf333 Add PYBIND11_EXPAND_SIDE_EFFECTS macro
This allows calling of functions (typically void) over a parameter
pack, replacing usage such as:

    bool unused[] = { (voidfunc(param_pack_arg), false)..., false };
    (void) unused;

with a much cleaner:

    PYBIND11_EXPAND_SIDE_EFFECTS(voidfunc(param_pack_arg));
2017-05-24 20:43:41 -04:00
..
2017-03-11 23:04:16 -04:00
2017-05-10 10:42:23 -04:00
2017-05-10 10:44:19 -04:00
2017-05-24 13:09:31 -04:00