mirror of https://github.com/grpc/grpc-java.git
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:
parent
f52b4c1443
commit
917f6faac6
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <algorithm>
|
||||
#include <iostream>
|
||||
#include <iterator>
|
||||
#include <map>
|
||||
#include <vector>
|
||||
#include <google/protobuf/compiler/java/java_names.h>
|
||||
|
|
|
|||
Loading…
Reference in New Issue