diff options
author | 2016-06-24 19:56:50 +1000 | |
---|---|---|
committer | 2016-06-24 19:56:50 +1000 | |
commit | 15f02da7bd96175523810b3e44e8502f730cb4f7 (patch) | |
tree | 928afd55818811ac0744c10cfba7347c3d2a7d1f /src/lib/util/vecstream.h | |
parent | 5ece80fe5d693a022e4584f5f9c6dd57d3802a24 (diff) |
Improved workaround for missing cbegin/cend in glibstdc++ [Alex Miller]
Diffstat (limited to 'src/lib/util/vecstream.h')
-rw-r--r-- | src/lib/util/vecstream.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/util/vecstream.h b/src/lib/util/vecstream.h index 4491c1d61b7..aaf0e84e61b 100644 --- a/src/lib/util/vecstream.h +++ b/src/lib/util/vecstream.h @@ -14,8 +14,8 @@ ***************************************************************************/ -#ifndef __MAME_UTIL_VECSTREAM_H__ -#define __MAME_UTIL_VECSTREAM_H__ +#ifndef MAME_UTIL_VECSTREAM_H +#define MAME_UTIL_VECSTREAM_H #include <algorithm> #include <cassert> @@ -395,4 +395,4 @@ void swap(basic_vectorstream<CharT, Traits, Allocator> &a, basic_vectorstream<Ch } // namespace util -#endif // __MAME_UTIL_VECSTREAM_H__ +#endif // MAME_UTIL_VECSTREAM_H |