NOLINTNEXTLINE(google-explicit-constructor)
| 68 | common_internal::IsListValueAlternativeV<absl::remove_cvref_t<T>>>> |
| 69 | // NOLINTNEXTLINE(google-explicit-constructor) |
| 70 | ListValue(T&& value) |
| 71 | : variant_(absl::in_place_type<absl::remove_cvref_t<T>>, |
| 72 | std::forward<T>(value)) {} |
| 73 | |
| 74 | ListValue() = default; |
| 75 | ListValue(const ListValue&) = default; |
no outgoing calls
no test coverage detected