aboutsummaryrefslogtreecommitdiff
path: root/src/shader_recompiler/exception.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2021-07-27 04:09:15 -0400
committerLioncash <mathew1800@gmail.com>2021-07-27 04:09:18 -0400
commit90f3678ada9778277df2e70d4b26e1ec082c4076 (patch)
tree1a20db5864a444e5bf8bcead207251dc10dae0a0 /src/shader_recompiler/exception.h
parentd6c799494c6235bc0796386bb31cae9fbe26f737 (diff)
exception: Narrow down specific header
We can use the <exception> header instead of pulling in all of the exception-style classes.
Diffstat (limited to 'src/shader_recompiler/exception.h')
-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 337e7f0c8c..c47aecc1ef 100644
--- a/src/shader_recompiler/exception.h
+++ b/src/shader_recompiler/exception.h
@@ -4,7 +4,7 @@
#pragma once
-#include <stdexcept>
+#include <exception>
#include <string>
#include <string_view>
#include <utility>