mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-25 15:21:54 +00:00
Revert enum change
This commit is contained in:
parent
44639b11fe
commit
f0ce21164c
@ -1022,12 +1022,12 @@ template <typename Char> struct fill_t {
|
|||||||
// We cannot use enum classes as bit fields because of a gcc bug
|
// We cannot use enum classes as bit fields because of a gcc bug
|
||||||
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61414.
|
// https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61414.
|
||||||
namespace align {
|
namespace align {
|
||||||
enum type : uint8_t { none, left, right, center, numeric };
|
enum type { none, left, right, center, numeric };
|
||||||
}
|
}
|
||||||
using align_t = align::type;
|
using align_t = align::type;
|
||||||
|
|
||||||
namespace sign {
|
namespace sign {
|
||||||
enum type : uint8_t { none, minus, plus, space };
|
enum type { none, minus, plus, space };
|
||||||
}
|
}
|
||||||
using sign_t = sign::type;
|
using sign_t = sign::type;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user