Skip to content

Commit cecb050

Browse files
committed
Fix missing return statement in embed_win32.cpp
1 parent e17f3d2 commit cecb050

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/embed_win32.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class HWNDEmbed : public detail::Embed {
1313
HWNDEmbed (lui::Embed& o) : detail::Embed (o) {}
1414
~HWNDEmbed() = default;
1515

16-
void* native_view() const noexcept { nullptr; }
16+
void* native_view() const noexcept { return nullptr; }
1717

1818
void view_changed() {
1919
if (attachment == nullptr)

0 commit comments

Comments
 (0)