diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-09-02 15:11:06 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-09-30 13:49:26 -0700 |
commit | 77563ec532c8b51134c3020fb3c70a8bed8457fb (patch) | |
tree | 51e285a203956681a04b08257fa06f8b113a5981 /src/io/cxxstdio_enums.hpp | |
parent | 0d3df507b4c4fe1dde086cd85a78179c8bcefcf9 (diff) | |
download | tmwa-77563ec532c8b51134c3020fb3c70a8bed8457fb.tar.gz tmwa-77563ec532c8b51134c3020fb3c70a8bed8457fb.tar.bz2 tmwa-77563ec532c8b51134c3020fb3c70a8bed8457fb.tar.xz tmwa-77563ec532c8b51134c3020fb3c70a8bed8457fb.zip |
Rename enum Option to Opt0
Diffstat (limited to 'src/io/cxxstdio_enums.hpp')
-rw-r--r-- | src/io/cxxstdio_enums.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/io/cxxstdio_enums.hpp b/src/io/cxxstdio_enums.hpp index 05cdcae..6f428e8 100644 --- a/src/io/cxxstdio_enums.hpp +++ b/src/io/cxxstdio_enums.hpp @@ -32,7 +32,7 @@ namespace e enum class BF : uint16_t; enum class EPOS : uint16_t; enum class MapCell : uint8_t; -enum class Option : uint16_t; +enum class Opt0 : uint16_t; inline auto decay_for_printf(BF v) -> typename remove_enum<decltype(v)>::type { return typename remove_enum<decltype(v)>::type(v); } @@ -41,7 +41,7 @@ auto decay_for_printf(EPOS v) -> typename remove_enum<decltype(v)>::type { retur inline auto decay_for_printf(MapCell v) -> typename remove_enum<decltype(v)>::type { return typename remove_enum<decltype(v)>::type(v); } inline -auto decay_for_printf(Option v) -> typename remove_enum<decltype(v)>::type { return typename remove_enum<decltype(v)>::type(v); } +auto decay_for_printf(Opt0 v) -> typename remove_enum<decltype(v)>::type { return typename remove_enum<decltype(v)>::type(v); } } namespace magic |