Skip to content

Commit 6210fd3

Browse files
committed
Fix names resolution
commit_hash:8f6a0edf06288e955e3e3ba5c7a30aeb36c59289
1 parent c154316 commit 6210fd3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

libraries/proto-structs/include/userver/proto-structs/io/impl/field_accessor.hpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,13 +194,14 @@ auto CreateFieldSetter(
194194
namespace traits {
195195

196196
template <typename T>
197-
concept FieldGetter = proto_structs::impl::traits::InheritsFromInstantiation<FieldGetter, T>;
197+
concept FieldGetter = proto_structs::impl::traits::InheritsFromInstantiation<proto_structs::io::impl::FieldGetter, T>;
198198

199199
template <typename T>
200-
concept FieldGetterWithPresence = proto_structs::impl::traits::InheritsFromInstantiation<FieldGetterWithPresence, T>;
200+
concept FieldGetterWithPresence =
201+
proto_structs::impl::traits::InheritsFromInstantiation<proto_structs::io::impl::FieldGetterWithPresence, T>;
201202

202203
template <typename T>
203-
concept FieldSetter = proto_structs::impl::traits::InheritsFromInstantiation<FieldSetter, T>;
204+
concept FieldSetter = proto_structs::impl::traits::InheritsFromInstantiation<proto_structs::io::impl::FieldSetter, T>;
204205

205206
} // namespace traits
206207

0 commit comments

Comments
 (0)