diff options
author | 2019-04-12 01:49:57 +1000 | |
---|---|---|
committer | 2019-04-12 01:49:57 +1000 | |
commit | f70f31731cddfe0f96b74fa82a3a07a51b17411e (patch) | |
tree | 49b646154d79db316d9450663a1a63e7283f085c /src/lib/formats/comx35_dsk.h | |
parent | 3aaae04942b9dd28de2232049d63a8871666ecaa (diff) |
(nw) suppress side effects, standardise #include guards
Diffstat (limited to 'src/lib/formats/comx35_dsk.h')
-rw-r--r-- | src/lib/formats/comx35_dsk.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/formats/comx35_dsk.h b/src/lib/formats/comx35_dsk.h index 1dc91806e3c..d5e2b961535 100644 --- a/src/lib/formats/comx35_dsk.h +++ b/src/lib/formats/comx35_dsk.h @@ -7,13 +7,15 @@ COMX-35 disk image format *********************************************************************/ +#ifndef MAME_FORMATS_COMX35_DSK_H +#define MAME_FORMATS_COMX35_DSK_H -#ifndef COMX35_DSK_H_ -#define COMX35_DSK_H_ +#pragma once #include "wd177x_dsk.h" -class comx35_format : public wd177x_format { +class comx35_format : public wd177x_format +{ public: comx35_format(); @@ -27,4 +29,4 @@ private: extern const floppy_format_type FLOPPY_COMX35_FORMAT; -#endif +#endif // MAME_FORMATS_COMX35_DSK_H |