| 302 | class Def, class Specs, class Bits, class End, class Invoker |
| 303 | > |
| 304 | void def_combinations( |
| 305 | Def def, Specs*, Bits, End, Invoker*) |
| 306 | { |
| 307 | initialize_converter(); |
| 308 | |
| 309 | def_combination(def, (Specs*)0, Bits(), (Invoker*)0); |
| 310 | |
| 311 | def_combinations( |
| 312 | def |
| 313 | , (Specs*)0 |
| 314 | , mpl::long_<Bits::value + 1>() |
| 315 | , End() |
| 316 | , (Invoker*)0 |
| 317 | ); |
| 318 | } |
| 319 | |
| 320 | template < |
| 321 | class Def, class Specs, class End, class Invoker |
no test coverage detected