@@ -869,11 +869,7 @@ TEST_F(TestTypeSystemClang, TestFunctionTemplateConstruction) {
869
869
CompilerType clang_type = m_ast->CreateFunctionType (int_type, {}, false , 0U );
870
870
FunctionDecl *func = m_ast->CreateFunctionDeclaration (
871
871
TU, OptionalClangModuleID (), " foo" , clang_type, StorageClass::SC_None,
872
- <<<<<<< HEAD
873
872
false , /* asm_label=*/ {});
874
- =======
875
- false , std::nullopt);
876
- >>>>>>> 382395408c4b ([lldb][Expression] Encode Module and DIE UIDs into function AsmLabels)
877
873
TypeSystemClang::TemplateParameterInfos empty_params;
878
874
879
875
// Create the actual function template.
@@ -904,11 +900,7 @@ TEST_F(TestTypeSystemClang, TestFunctionTemplateInRecordConstruction) {
904
900
// 2. It is mirroring the behavior of DWARFASTParserClang::ParseSubroutine.
905
901
FunctionDecl *func = m_ast->CreateFunctionDeclaration (
906
902
TU, OptionalClangModuleID (), " foo" , clang_type, StorageClass::SC_None,
907
- <<<<<<< HEAD
908
903
false , /* asm_label=*/ {});
909
- =======
910
- false , std::nullopt);
911
- >>>>>>> 382395408c4b ([lldb][Expression] Encode Module and DIE UIDs into function AsmLabels)
912
904
TypeSystemClang::TemplateParameterInfos empty_params;
913
905
914
906
// Create the actual function template.
@@ -946,11 +938,7 @@ TEST_F(TestTypeSystemClang, TestDeletingImplicitCopyCstrDueToMoveCStr) {
946
938
bool is_attr_used = false ;
947
939
bool is_artificial = false ;
948
940
m_ast->AddMethodToCXXRecordType (
949
- <<<<<<< HEAD
950
941
t.GetOpaqueQualType (), class_name, /* asm_label=*/ {}, function_type,
951
- =======
952
- t.GetOpaqueQualType (), class_name, std::nullopt, function_type,
953
- >>>>>>> 382395408c4b ([lldb][Expression] Encode Module and DIE UIDs into function AsmLabels)
954
942
lldb::AccessType::eAccessPublic, is_virtual, is_static, is_inline,
955
943
is_explicit, is_attr_used, is_artificial);
956
944
@@ -987,11 +975,7 @@ TEST_F(TestTypeSystemClang, TestNotDeletingUserCopyCstrDueToMoveCStr) {
987
975
CompilerType function_type = m_ast->CreateFunctionType (
988
976
return_type, args, /* variadic=*/ false , /* quals*/ 0U );
989
977
m_ast->AddMethodToCXXRecordType (
990
- <<<<<<< HEAD
991
978
t.GetOpaqueQualType (), class_name, /* asm_label=*/ {}, function_type,
992
- =======
993
- t.GetOpaqueQualType (), class_name, std::nullopt, function_type,
994
- >>>>>>> 382395408c4b ([lldb][Expression] Encode Module and DIE UIDs into function AsmLabels)
995
979
lldb::AccessType::eAccessPublic, is_virtual, is_static, is_inline,
996
980
is_explicit, is_attr_used, is_artificial);
997
981
}
@@ -1003,11 +987,7 @@ TEST_F(TestTypeSystemClang, TestNotDeletingUserCopyCstrDueToMoveCStr) {
1003
987
m_ast->CreateFunctionType (return_type, args,
1004
988
/* variadic=*/ false , /* quals*/ 0U );
1005
989
m_ast->AddMethodToCXXRecordType (
1006
- <<<<<<< HEAD
1007
990
t.GetOpaqueQualType (), class_name, /* asm_label=*/ {}, function_type,
1008
- =======
1009
- t.GetOpaqueQualType (), class_name, std::nullopt, function_type,
1010
- >>>>>>> 382395408c4b ([lldb][Expression] Encode Module and DIE UIDs into function AsmLabels)
1011
991
lldb::AccessType::eAccessPublic, is_virtual, is_static, is_inline,
1012
992
is_explicit, is_attr_used, is_artificial);
1013
993
}
@@ -1118,11 +1098,7 @@ TEST_F(TestTypeSystemClang, AddMethodToCXXRecordType_ParmVarDecls) {
1118
1098
m_ast->CreateFunctionType (return_type, param_types,
1119
1099
/* variadic=*/ false , /* quals*/ 0U );
1120
1100
m_ast->AddMethodToCXXRecordType (
1121
- <<<<<<< HEAD
1122
1101
t.GetOpaqueQualType (), " myFunc" , /* asm_label=*/ {}, function_type,
1123
- =======
1124
- t.GetOpaqueQualType (), " myFunc" , std::nullopt, function_type,
1125
- >>>>>>> 382395408c4b ([lldb][Expression] Encode Module and DIE UIDs into function AsmLabels)
1126
1102
lldb::AccessType::eAccessPublic, is_virtual, is_static, is_inline,
1127
1103
is_explicit, is_attr_used, is_artificial);
1128
1104
0 commit comments