diff options
author | Lioncash <mathew1800@gmail.com> | 2021-07-27 04:09:15 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2021-07-27 04:09:18 -0400 |
commit | 90f3678ada9778277df2e70d4b26e1ec082c4076 (patch) | |
tree | 1a20db5864a444e5bf8bcead207251dc10dae0a0 /src/shader_recompiler/exception.h | |
parent | d6c799494c6235bc0796386bb31cae9fbe26f737 (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.h | 2 |
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> |