| 14 | // Helper to get the argument tuple type, with correct storage types. |
| 15 | template<typename... Args> |
| 16 | struct ArgsTuple { |
| 17 | typedef std::tuple<typename dukglue::types::ArgStorage<Args>::type...> type; |
| 18 | }; |
| 19 | |
| 20 | // Helper to get argument indices. |
| 21 | // Call read for every Ts[i], for matching argument index Index[i]. |
nothing calls this directly
no outgoing calls
no test coverage detected