summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-10-11 18:35:58 -0400
committerDavid Robillard <d@drobilla.net>2024-10-11 18:35:58 -0400
commit3bcdeb14bb048f46e1e9ba03e17db5b01b6ebb51 (patch)
tree03ecb82a83fcae3be574f6df4405cfb2506ac318 /src
parent1af5fc3b2ee53771eed6997401aa198107f21f52 (diff)
downloadpatchage-3bcdeb14bb048f46e1e9ba03e17db5b01b6ebb51.tar.gz
patchage-3bcdeb14bb048f46e1e9ba03e17db5b01b6ebb51.tar.bz2
patchage-3bcdeb14bb048f46e1e9ba03e17db5b01b6ebb51.zip
Remove redundant return statement
Diffstat (limited to 'src')
-rw-r--r--src/UIFile.hpp1
1 files changed, 0 insertions, 1 deletions
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 {};
}
};