Skip to content

Commit 3da8a4d

Browse files
authored
Fix clang-diagnostic-inconsistent-missing-override error in Imageview… (#2939)
# Summary Fixes a **clang-diagnostic-inconsistent-missing-override** warning/error when building react-native-svg for windows using clang. ## Test Plan Just fixes a build warning, does not have any runtime impact.
1 parent 2845b81 commit 3da8a4d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

windows/RNSVG/Fabric/ImageView.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ struct ImageView : winrt::implements<ImageView, winrt::Windows::Foundation::IIns
6969
void UpdateProps(
7070
const winrt::Microsoft::ReactNative::ComponentView &view,
7171
const winrt::Microsoft::ReactNative::IComponentProps &newProps,
72-
const winrt::Microsoft::ReactNative::IComponentProps &oldProps) noexcept {
72+
const winrt::Microsoft::ReactNative::IComponentProps &oldProps) noexcept override {
7373
RenderableView::UpdateProps(view, newProps, oldProps);
7474

7575
auto props = newProps.as<ImageProps>();

0 commit comments

Comments
 (0)