diff --git a/src/google/protobuf/compiler/objectivec/objectivec_enum.cc b/src/google/protobuf/compiler/objectivec/objectivec_enum.cc index 614eaa3a99..1f9420372f 100644 --- a/src/google/protobuf/compiler/objectivec/objectivec_enum.cc +++ b/src/google/protobuf/compiler/objectivec/objectivec_enum.cc @@ -28,6 +28,8 @@ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +#include +#include #include #include @@ -35,7 +37,6 @@ #include #include #include -#include // std::find() namespace google { namespace protobuf { @@ -48,7 +49,7 @@ std::string SafelyPrintIntToCode(int v) { // about the fact that +2147483648 cannot be represented as an int. return "-2147483647 - 1"; } else { - return absl::StrCat(v); + return StrCat(v); } } } // namespace