diff options
author | 2021-11-03 05:25:37 +1100 | |
---|---|---|
committer | 2021-11-03 05:25:37 +1100 | |
commit | a6e65db0439ff843c11d6a1cd19519a7b9ec2b13 (patch) | |
tree | eb075260bd8c618e4f713cf38906027df67b8e8d | |
parent | dd43f801a1839b526de1f3b0196d27073c0ebd7a (diff) |
emu/ioport.h: Fixed stupid mismatched friend declaration that GCC blithely ignores.
-rw-r--r-- | src/emu/ioport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/ioport.h b/src/emu/ioport.h index 39cfbc42205..59f14b094d5 100644 --- a/src/emu/ioport.h +++ b/src/emu/ioport.h @@ -1242,7 +1242,7 @@ private: class analog_field { friend class ioport_manager; - friend void ioport_field::set_user_settings(const ioport_field::user_settings &settings) noexcept; + friend void ioport_field::set_user_settings(const ioport_field::user_settings &settings); public: // construction/destruction |