| 70 | |
| 71 | template<typename S> |
| 72 | struct _state_instance |
| 73 | { |
| 74 | using value_type = S; |
| 75 | using type = _state_instance<S>; |
| 76 | static S value; |
| 77 | }; |
| 78 | |
| 79 | template<typename S> |
| 80 | typename _state_instance<S>::value_type _state_instance<S>::value; |
nothing calls this directly
no outgoing calls
no test coverage detected