Skip to content

Commit

Permalink
Utility: no need to include <cstdint> for an internal format() enum.
Browse files Browse the repository at this point in the history
  • Loading branch information
mosra committed Feb 10, 2019
1 parent 031ed86 commit 2970f06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Corrade/Utility/Format.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

namespace Corrade { namespace Utility { namespace Implementation {

enum class FormatType: std::uint8_t {
enum class FormatType: unsigned char {
Unspecified,
Octal,
Decimal,
Expand Down
2 changes: 1 addition & 1 deletion src/Corrade/Utility/Format.h
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ template<class ...Args> inline void printError(const char* format, const Args&..

namespace Implementation {

enum class FormatType: std::uint8_t;
enum class FormatType: unsigned char;

template<class T> struct Formatter;

Expand Down

0 comments on commit 2970f06

Please sign in to comment.