File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -670,8 +670,8 @@ ValueObjectSP StackFrame::LegacyGetValueForVariableExpressionPath(
670
670
}
671
671
}
672
672
673
- // If we have a non pointer type with a sythetic value then lets check if
674
- // we have an sythetic dereference specified.
673
+ // If we have a non- pointer type with a synthetic value then lets check if
674
+ // we have a synthetic dereference specified.
675
675
if (!valobj_sp->IsPointerType () && valobj_sp->HasSyntheticValue ()) {
676
676
Status deref_error;
677
677
if (valobj_sp->GetCompilerType ().IsReferenceType ()) {
@@ -686,13 +686,13 @@ ValueObjectSP StackFrame::LegacyGetValueForVariableExpressionPath(
686
686
valobj_sp = valobj_sp->Dereference (deref_error);
687
687
if (!valobj_sp || deref_error.Fail ()) {
688
688
error = Status::FromErrorStringWithFormatv (
689
- " Failed to dereference sythetic value: {0}" , deref_error);
689
+ " Failed to dereference synthetic value: {0}" , deref_error);
690
690
return ValueObjectSP ();
691
691
}
692
692
// Some synthetic plug-ins fail to set the error in Dereference
693
693
if (!valobj_sp) {
694
694
error =
695
- Status::FromErrorString (" Failed to dereference sythetic value" );
695
+ Status::FromErrorString (" Failed to dereference synthetic value" );
696
696
return ValueObjectSP ();
697
697
}
698
698
expr_is_ptr = false ;
You can’t perform that action at this time.
0 commit comments