From 45e7473d9ee6fa777df4295686b666556cd5190a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 19 Sep 2022 22:24:59 +0200 Subject: [PATCH] sceneconverter: more needless isEmpty() cleanup. --- src/Magnum/SceneTools/sceneconverter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/SceneTools/sceneconverter.cpp b/src/Magnum/SceneTools/sceneconverter.cpp index 63478800e..3c79d81a7 100644 --- a/src/Magnum/SceneTools/sceneconverter.cpp +++ b/src/Magnum/SceneTools/sceneconverter.cpp @@ -326,7 +326,7 @@ the first mesh.)") } /* Generic checks */ - if(!args.value("output").isEmpty()) { + if(args.value("output")) { /* Not an error in this case, it should be possible to just append --info* to existing command line without having to remove anything. But print a warning at least, it could also be a mistyped option. */