From 917f6faac6b3e8e010d493575a5409e70926662c Mon Sep 17 00:00:00 2001 From: Jakob Buchgraber Date: Tue, 30 May 2017 20:15:46 +0200 Subject: [PATCH] compiler: Fix compilation error The code uses std::back_insert_iterator which is part of the header. The header is not included though. We (bazel) noticed the build failing on Windows when using the Visual Studio C++ compiler. --- compiler/src/java_plugin/cpp/java_generator.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/src/java_plugin/cpp/java_generator.cpp b/compiler/src/java_plugin/cpp/java_generator.cpp index 3ce4adba55..828c4977fa 100644 --- a/compiler/src/java_plugin/cpp/java_generator.cpp +++ b/compiler/src/java_plugin/cpp/java_generator.cpp @@ -2,6 +2,7 @@ #include #include +#include #include #include #include