common/fs/path_util: Remove [[nodiscard]] from function with void return
We can't make use of the return value here, since we don't a return value to work with.
This commit is contained in:
parent
f09c9b5fcc
commit
dd8577e91d
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ void SetYuzuPath(YuzuPath yuzu_path, const std::filesystem::path& new_path);
|
|||
|
||||
#ifdef _WIN32
|
||||
template <typename Path>
|
||||
[[nodiscard]] void SetYuzuPath(YuzuPath yuzu_path, const Path& new_path) {
|
||||
void SetYuzuPath(YuzuPath yuzu_path, const Path& new_path) {
|
||||
if constexpr (IsChar<typename Path::value_type>) {
|
||||
SetYuzuPath(yuzu_path, ToU8String(new_path));
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue