Skip to content

Commit

Permalink
Make sure uint64_t is the one from std.
Browse files Browse the repository at this point in the history
  • Loading branch information
xkbeyer committed Dec 26, 2015
1 parent e2c1a99 commit 8ed3d92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/connection.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

#include <list>
#include <unordered_map>
#include <cstdint>

#include "packet.h"

Expand All @@ -32,7 +33,7 @@ enum class FTSC_ERR {
};

// Holds for each request the recv and send counts.
using PacketStats = std::unordered_map<master_request_t, std::pair<uint64_t, uint64_t>>;
using PacketStats = std::unordered_map<master_request_t, std::pair<std::uint64_t, std::uint64_t>>;

namespace FTS {
class RawDataContainer;
Expand Down

0 comments on commit 8ed3d92

Please sign in to comment.