From af44734a4f82937d8e85b2f2954987add7c00899 Mon Sep 17 00:00:00 2001 From: daemyung jang Date: Fri, 11 Jul 2014 09:58:58 +0900 Subject: [PATCH] Fix build errors with GCC4.8. [problem] 'uint64_t' does not name a type. [cause] Don't include 'stdint.h'. [solution] Include 'stdint.h'. Change-Id: I702e7e43efd31e2b0e296f46026bdd74e1979f8b --- adaptors/base/update-render-synchronization.h | 1 + 1 file changed, 1 insertion(+) diff --git a/adaptors/base/update-render-synchronization.h b/adaptors/base/update-render-synchronization.h index 86d420e..1ab55b1 100644 --- a/adaptors/base/update-render-synchronization.h +++ b/adaptors/base/update-render-synchronization.h @@ -22,6 +22,7 @@ #include // EXTERNAL INCLUDES +#include #include #include -- 2.7.4