| 858 | public: |
| 859 | template <typename Value> |
| 860 | constexpr static auto bindValue(ValueVariant<Type> &v, Value &&value, |
| 861 | std::false_type /* StorePointer */) |
| 862 | { |
| 863 | // for constexpr |
| 864 | v = ValueVariant<Type>{std::forward<Value>(value)}; |
| 865 | } |
| 866 | template <typename Value> |
| 867 | constexpr static auto bindValue(ValueVariant<Type> &v, Value &&value, |
| 868 | std::true_type /* StorePointer */) |
nothing calls this directly
no outgoing calls
no test coverage detected