summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2021-04-23 09:20:52 -0400
committerGravatar Lioncash2021-04-23 09:20:54 -0400
commit6e2040c9551422307920a708773e0099222470a6 (patch)
tree95bfd0b6cb61157c51c5ef6c8d8efe48ffa95735 /src
parentMerge pull request #6223 from lat9nq/ffmpeg-external-fixes (diff)
downloadyuzu-6e2040c9551422307920a708773e0099222470a6.tar.gz
yuzu-6e2040c9551422307920a708773e0099222470a6.tar.xz
yuzu-6e2040c9551422307920a708773e0099222470a6.zip
lm: Resolve -Wextra-semi warning
Resolves a trivial warning with clang.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/lm/lm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp
index 7d7542fc2..70f5272af 100644
--- a/src/core/hle/service/lm/lm.cpp
+++ b/src/core/hle/service/lm/lm.cpp
@@ -46,7 +46,7 @@ struct hash<Service::LM::LogPacketHeaderEntry> {
46 boost::hash_combine(seed, k.severity); 46 boost::hash_combine(seed, k.severity);
47 boost::hash_combine(seed, k.verbosity); 47 boost::hash_combine(seed, k.verbosity);
48 return seed; 48 return seed;
49 }; 49 }
50}; 50};
51} // namespace std 51} // namespace std
52 52