From 6e7f8da694fae0e4dd7a9877d3e2bc68d2d9150c Mon Sep 17 00:00:00 2001 From: Alex Miller Date: Fri, 10 Aug 2018 14:36:45 -0700 Subject: [PATCH] Add includes for missing definitions of size_t and uint32_t. --- flow/Hash3.h | 3 +++ flow/Stats.h | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/flow/Hash3.h b/flow/Hash3.h index ef65f69c63..45e785cd5e 100644 --- a/flow/Hash3.h +++ b/flow/Hash3.h @@ -2,6 +2,9 @@ #define FLOW_HASH3_H #pragma once +#include +#include + // Prototypes for Bob Jenkins' "lookup3" hash // See Hash3.c for detailed documentation diff --git a/flow/Stats.h b/flow/Stats.h index 90e2f43432..b8c71e2dac 100644 --- a/flow/Stats.h +++ b/flow/Stats.h @@ -33,6 +33,8 @@ MyCounters() : foo("foo", cc), bar("bar", cc), baz("baz", cc) {} */ +#include +#include #include "flow.h" #include "TDMetric.actor.h" @@ -110,4 +112,4 @@ static void specialCounter(CounterCollection& collection, std::string const& nam Future traceCounters(std::string const& traceEventName, UID const& traceEventID, double const& interval, CounterCollection* const& counters, std::string const& trackLatestName = std::string()); -#endif \ No newline at end of file +#endif