Skip to content

Commit f08f2ee

Browse files
committed
ComplexTextController: Make CheckedRef members const
https://bugs.webkit.org/show_bug.cgi?id=294050 rdar://problem/152609927 Reviewed by NOBODY (OOPS!). This should be enough to remove ComplexTextController.cpp from UncheckedCallArgsCheckerExpectations once [1] on the static analyzer gets resolved. We have 2 remaining failures here due to [1] regarding members of TextLayout. * Source/WebCore/platform/graphics/ComplexTextController.h: [1] llvm/llvm-project#142485
1 parent d59f05a commit f08f2ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/WebCore/platform/graphics/ComplexTextController.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ class ComplexTextController {
201201

202202
SingleThreadWeakHashSet<const Font>* m_fallbackFonts { nullptr };
203203

204-
CheckedRef<const FontCascade> m_fontCascade;
205-
CheckedRef<const TextRun> m_run;
204+
const CheckedRef<const FontCascade> m_fontCascade;
205+
const CheckedRef<const TextRun> m_run;
206206

207207
unsigned m_currentCharacter { 0 };
208208
unsigned m_end { 0 };

0 commit comments

Comments
 (0)