diff options
| author | 2024-11-27 06:09:34 +1100 | |
|---|---|---|
| committer | 2024-11-27 06:09:34 +1100 | |
| commit | 2cf1afbf7475a5bf327e765cf5cd79d95b918612 (patch) | |
| tree | 404d755dc4841c897d05a052c197de1dce724fda /src/devices/cpu/sh | |
| parent | aea6a32a292603287411998a92dfe7ec985da43d (diff) | |
Demote tautological-compare to a warning again.
clang on Windows x86-64 is getting upset about code that is making no
assumptions about the relative sizes of uint64_t and long.
Also, fixed more #include guards.
Diffstat (limited to 'src/devices/cpu/sh')
| -rw-r--r-- | src/devices/cpu/sh/sh_dasm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/sh/sh_dasm.h b/src/devices/cpu/sh/sh_dasm.h index 820dce618a1..2b29187ee73 100644 --- a/src/devices/cpu/sh/sh_dasm.h +++ b/src/devices/cpu/sh/sh_dasm.h @@ -1,8 +1,8 @@ // license:BSD-3-Clause // copyright-holders:Juergen Buchmueller, R. Belmont -#ifndef MAME_CPU_SH_SH_SHDASM_H -#define MAME_CPU_SH_SH_SHDASM_H +#ifndef MAME_CPU_SH_SH_DASM_H +#define MAME_CPU_SH_SH_DASM_H #pragma once @@ -42,4 +42,4 @@ private: bool m_is_sh34; }; -#endif // MAME_CPU_SH_SH_SHDASM_H +#endif // MAME_CPU_SH_SH_DASM_H |
