Skip to content

Commit

Permalink
Include cstdint
Browse files Browse the repository at this point in the history
  • Loading branch information
Xtansia committed Apr 23, 2024
1 parent 8e0fa00 commit 350c8e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bin2s.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*/

#include <algorithm>
#include <cstdint>
#include <args.hxx>
#include <fstream>
#include <iomanip>
Expand Down Expand Up @@ -85,7 +86,7 @@ auto make_c_identifier(const std::string &str) -> std::string {
return std::regex_replace(res, leadingDigit, "_$1");
}

enum class result : std::uint8_t {
enum class result : uint8_t {
success,
identifier_invalid,
read_error,
Expand Down

0 comments on commit 350c8e0

Please sign in to comment.