Fix missing return statement in static bool method

Looks like devtoolset compiler behaves differently on bool methods
without an explicit return statement. Kind of strange.

Undefined behavior?
This commit is contained in:
TheAssassin
2019-08-14 23:42:57 +02:00
parent 470caa3db1
commit 2d45ef4c72
+2
View File
@@ -77,6 +77,8 @@ namespace linuxdeploy {
ldLog() << LD_ERROR << "Could not find suitable icon for Icon entry:" << iconEntry.value() << std::endl;
return false;
}
return true;
}
bool deployCustomAppRunFile(const bf::path& customAppRunPath) const {