compiler: Fix compilation error

The code uses std::back_insert_iterator which is part of the <iterator>
header. The header is not included though.

We (bazel) noticed the build failing on Windows when using the Visual Studio
C++ compiler.
This commit is contained in:
Jakob Buchgraber 2017-05-30 20:15:46 +02:00 committed by Carl Mastrangelo
parent f52b4c1443
commit 917f6faac6
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@
#include <algorithm>
#include <iostream>
#include <iterator>
#include <map>
#include <vector>
#include <google/protobuf/compiler/java/java_names.h>