File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lldb/source/Plugins/TypeSystem/Swift Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2452,9 +2452,9 @@ CompilerType TypeSystemSwiftTypeRef::GetChildCompilerTypeAtIndex(
2452
2452
ast_child_name = suffix.str ();
2453
2453
assert ((llvm::StringRef (child_name).contains (' .' ) ||
2454
2454
Equivalent (child_name, ast_child_name)));
2455
- assert (( Equivalent (llvm::Optional< uint64_t >(child_byte_size),
2456
- llvm::Optional<uint64_t >(ast_child_byte_size)) ||
2457
- ast_language_flags ));
2455
+ assert (ast_language_flags ||
2456
+ ( Equivalent ( llvm::Optional<uint64_t >(child_byte_size),
2457
+ llvm::Optional< uint64_t >(ast_child_byte_size)) ));
2458
2458
assert (Equivalent (llvm::Optional<uint64_t >(child_byte_offset),
2459
2459
llvm::Optional<uint64_t >(ast_child_byte_offset)));
2460
2460
assert (
You can’t perform that action at this time.
0 commit comments