unsigned long long -> uint64_t

This commit is contained in:
Eelco Dolstra
2020-08-04 11:34:05 +02:00
parent 7d3ba616a9
commit 4b5813051b
5 changed files with 6 additions and 7 deletions

View File

@ -23,8 +23,7 @@ using namespace nix;
namespace nix {
template<> void toJSON<std::atomic<long>>(std::ostream & str, const std::atomic<long> & n) { str << n; }
template<> void toJSON<std::atomic<unsigned long>>(std::ostream & str, const std::atomic<unsigned long> & n) { str << n; }
template<> void toJSON<std::atomic<unsigned long long>>(std::ostream & str, const std::atomic<unsigned long long> & n) { str << n; }
template<> void toJSON<std::atomic<uint64_t>>(std::ostream & str, const std::atomic<uint64_t> & n) { str << n; }
template<> void toJSON<double>(std::ostream & str, const double & n) { str << n; }
}