Skip to content

Commit

Permalink
Explicitly include cstdint
Browse files Browse the repository at this point in the history
<3 C++
  • Loading branch information
vt4a2h committed Dec 30, 2023
1 parent 9fef8ad commit 87a05c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/writer_default_types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@

#include <vector>
#include <string>
#include <cstdint>

#include <fl/writer/writer.hpp>
#include <fl/semigroups/semigroup_std_container.hpp>

using Log = std::vector<std::string>;
using Value = std::uint64_t;
using Value = uint64_t;
using Logger = fl::Writer<Log, Value>;

0 comments on commit 87a05c6

Please sign in to comment.