diff --git a/third-party/thrift/src/thrift/lib/cpp2/op/Patch.h b/third-party/thrift/src/thrift/lib/cpp2/op/Patch.h index f3a28abf08348..3678a64178ef4 100644 --- a/third-party/thrift/src/thrift/lib/cpp2/op/Patch.h +++ b/third-party/thrift/src/thrift/lib/cpp2/op/Patch.h @@ -16,11 +16,10 @@ #pragma once -#include - #include #include #include +#include #include #include #include @@ -114,14 +113,6 @@ using safe_patch_value_type = typename detail::SafePatchValueType::type; template using patch_type = typename detail::PatchType>::type; -template -inline constexpr bool is_patch_v = false; - -template -inline constexpr bool - is_patch_v> = - std::is_base_of_v, T>; - template inline constexpr bool is_assign_only_patch_v = false; template diff --git a/third-party/thrift/src/thrift/lib/cpp2/op/PatchTraits.h b/third-party/thrift/src/thrift/lib/cpp2/op/PatchTraits.h new file mode 100644 index 0000000000000..4515bc472e417 --- /dev/null +++ b/third-party/thrift/src/thrift/lib/cpp2/op/PatchTraits.h @@ -0,0 +1,34 @@ +/* + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#pragma once + +#include + +#include +#include + +namespace apache::thrift::op { + +template +inline constexpr bool is_patch_v = false; + +template +inline constexpr bool + is_patch_v> = + std::is_base_of_v, T>; + +} // namespace apache::thrift::op