https://github.com/boostorg/json/issues/15
| 1212 | |
| 1213 | // https://github.com/boostorg/json/issues/15 |
| 1214 | void |
| 1215 | testIssue15() |
| 1216 | { |
| 1217 | BOOST_TEST( |
| 1218 | json::parse("{\"port\": 12345}") |
| 1219 | .as_object() |
| 1220 | .at("port") |
| 1221 | .as_int64() == 12345); |
| 1222 | } |
| 1223 | |
| 1224 | // https://github.com/boostorg/json/issues/45 |
| 1225 | void |
nothing calls this directly
no outgoing calls
no test coverage detected