summaryrefslogtreecommitdiff
path: root/src/shader_recompiler/exception.h
diff options
context:
space:
mode:
authorGravatar Lioncash2021-07-27 04:09:15 -0400
committerGravatar Lioncash2021-07-27 04:09:18 -0400
commit90f3678ada9778277df2e70d4b26e1ec082c4076 (patch)
tree1a20db5864a444e5bf8bcead207251dc10dae0a0 /src/shader_recompiler/exception.h
parentMerge pull request #6696 from ameerj/speed-limit-rename (diff)
downloadyuzu-90f3678ada9778277df2e70d4b26e1ec082c4076.tar.gz
yuzu-90f3678ada9778277df2e70d4b26e1ec082c4076.tar.xz
yuzu-90f3678ada9778277df2e70d4b26e1ec082c4076.zip
exception: Narrow down specific header
We can use the <exception> header instead of pulling in all of the exception-style classes.
Diffstat (limited to '')
-rw-r--r--src/shader_recompiler/exception.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shader_recompiler/exception.h b/src/shader_recompiler/exception.h
index 337e7f0c8..c47aecc1e 100644
--- a/src/shader_recompiler/exception.h
+++ b/src/shader_recompiler/exception.h
@@ -4,7 +4,7 @@
4 4
5#pragma once 5#pragma once
6 6
7#include <stdexcept> 7#include <exception>
8#include <string> 8#include <string>
9#include <string_view> 9#include <string_view>
10#include <utility> 10#include <utility>