diff options
author | David Robillard <d@drobilla.net> | 2024-10-11 18:35:58 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-10-11 18:35:58 -0400 |
commit | 3bcdeb14bb048f46e1e9ba03e17db5b01b6ebb51 (patch) | |
tree | 03ecb82a83fcae3be574f6df4405cfb2506ac318 | |
parent | 1af5fc3b2ee53771eed6997401aa198107f21f52 (diff) | |
download | patchage-3bcdeb14bb048f46e1e9ba03e17db5b01b6ebb51.tar.gz patchage-3bcdeb14bb048f46e1e9ba03e17db5b01b6ebb51.tar.bz2 patchage-3bcdeb14bb048f46e1e9ba03e17db5b01b6ebb51.zip |
Remove redundant return statement
-rw-r--r-- | .suppress.cppcheck | 1 | ||||
-rw-r--r-- | src/UIFile.hpp | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/.suppress.cppcheck b/.suppress.cppcheck index ddbc41b..ec887b7 100644 --- a/.suppress.cppcheck +++ b/.suppress.cppcheck @@ -1,6 +1,5 @@ constParameterCallback constVariablePointer -duplicateBreak missingReturn normalCheckLevelMaxBranches shadowFunction diff --git a/src/UIFile.hpp b/src/UIFile.hpp index cd07aad..d583c6d 100644 --- a/src/UIFile.hpp +++ b/src/UIFile.hpp @@ -56,7 +56,6 @@ public: std::stringstream ss; ss << "Unable to find " << ui_filename << "\n"; throw std::runtime_error(ss.str()); - return {}; } }; |