The std::move here is required to resolve to the move ctor rather than to the universal reference ctor.
| 8 | // The std::move here is required to resolve to the move ctor |
| 9 | // rather than to the universal reference ctor. |
| 10 | Wrapper(jwt::jwt_object&& obj) : object{std::move(obj)} {} |
| 11 | jwt::jwt_object object; |
| 12 | }; |
| 13 |
nothing calls this directly
no outgoing calls
no test coverage detected