This is an automated email from the ASF dual-hosted git repository.
masaori pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new e0c6dc1 tscore/ink_hrtime: add missing cstdint import
e0c6dc1 is described below
commit e0c6dc12eb77d32e8e7e40a0d34588250f9499eb
Author: Johan BergstroĢm <[email protected]>
AuthorDate: Fri Mar 1 19:59:36 2019 -0300
tscore/ink_hrtime: add missing cstdint import
On alpine linux 3.9 (and edge) the compilation was failing
because of a missing import.
Refs: https://github.com/apache/trafficserver/issues/5103
---
include/tscore/ink_hrtime.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/tscore/ink_hrtime.h b/include/tscore/ink_hrtime.h
index a1405a9..f321476 100644
--- a/include/tscore/ink_hrtime.h
+++ b/include/tscore/ink_hrtime.h
@@ -33,6 +33,7 @@
#include "tscore/ink_config.h"
#include "tscore/ink_assert.h"
#include <ctime>
+#include <cstdint>
#include <sys/time.h>
#include <cstdlib>
typedef int64_t ink_hrtime;