From c1a5553afba32c578e54d4c712f5575af50d107f Mon Sep 17 00:00:00 2001 From: Mike Lischke Date: Tue, 13 Dec 2016 09:03:21 +0100 Subject: [PATCH] Build fix for new multi-threading lock. In XCode it wasn't necessary to add the condition_variable header (probably included indirectly), while for other platforms that is necessary. --- runtime/Cpp/runtime/src/antlr4-common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/Cpp/runtime/src/antlr4-common.h b/runtime/Cpp/runtime/src/antlr4-common.h index 8f5b74b43..29d15c85b 100644 --- a/runtime/Cpp/runtime/src/antlr4-common.h +++ b/runtime/Cpp/runtime/src/antlr4-common.h @@ -32,6 +32,7 @@ #include #include #include +#include // Defines for the Guid class and other platform dependent stuff. #ifdef _WIN32