| 1125 | |
| 1126 | template<class... Argn> |
| 1127 | static |
| 1128 | void |
| 1129 | check_array( |
| 1130 | value const& jv, |
| 1131 | Argn const&... argn) |
| 1132 | { |
| 1133 | if(! BOOST_TEST(jv.is_array())) |
| 1134 | return; |
| 1135 | if(! BOOST_TEST(sizeof...(argn) == |
| 1136 | jv.get_array().size())) |
| 1137 | return; |
| 1138 | detail::check_array_impl(0, jv, argn...); |
| 1139 | } |
| 1140 | |
| 1141 | //---------------------------------------------------------- |
| 1142 |
no test coverage detected