Skip to content

Commit cd4d766

Browse files
generatedunixname89002005287564meta-codesync[bot]
authored andcommitted
Fix CQS signal modernize-type-traits in fbcode/thrift/test [B] [B] [B]
Reviewed By: iahs Differential Revision: D90116145 fbshipit-source-id: 757add64fc7beb54e57d10f5cef6406c15c9480e
1 parent 46f7dde commit cd4d766

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

third-party/thrift/src/thrift/test/tablebased/SerializerTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Type makeStructWithRefLike() {
137137
using Struct =
138138
std::remove_reference_t<decltype(*obj.shared_struct_field_ref())>;
139139
obj.shared_struct_field_ref() = std::make_shared<std::add_const_t<Struct>>(
140-
makeStructBLike<typename std::remove_const<Struct>::type>());
140+
makeStructBLike<std::remove_const_t<Struct>>());
141141
std::vector<std::string> tmp = {"test1", "test2"};
142142
obj.shared_list_field_ref() =
143143
std::make_shared<const std::vector<std::string>>(std::move(tmp));

0 commit comments

Comments
 (0)