Skip to content

Commit 9552916

Browse files
committed
Add missing explicit return
Why the heck do C++ compilers permit the lack of an explicit return statement outside void()...? Just calling it "undefined behavior" is *not* developer friendly.
1 parent d0e65fb commit 9552916

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/deployers/PrintSupportPluginsDeployer.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,6 @@ bool PrintSupportPluginsDeployer::deploy() {
2121
if (!appDir.deployLibrary(*i, appDir.path() / "usr/plugins/printsupport/"))
2222
return false;
2323
}
24+
25+
return true;
2426
}

0 commit comments

Comments
 (0)