From 58b2decb7b7b35ddcada65900ade5b132762f10f Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sat, 25 Jul 2015 19:37:52 -0700 Subject: Remove two unused functions. --- src/google/protobuf/stubs/strutil.cc | 7 ------- src/google/protobuf/wire_format.cc | 9 --------- 2 files changed, 16 deletions(-) (limited to 'src') diff --git a/src/google/protobuf/stubs/strutil.cc b/src/google/protobuf/stubs/strutil.cc index 2ec62b42..8442f2ce 100644 --- a/src/google/protobuf/stubs/strutil.cc +++ b/src/google/protobuf/stubs/strutil.cc @@ -872,13 +872,6 @@ char *FastHex32ToBuffer(uint32 value, char* buffer) { return InternalFastHexToBuffer(value, buffer, 8); } -static inline char* PlaceNum(char* p, int num, char prev_sep) { - *p-- = '0' + num % 10; - *p-- = '0' + num / 10; - *p-- = prev_sep; - return p; -} - // ---------------------------------------------------------------------- // FastInt32ToBufferLeft() // FastUInt32ToBufferLeft() diff --git a/src/google/protobuf/wire_format.cc b/src/google/protobuf/wire_format.cc index 54cd653a..c5db963b 100644 --- a/src/google/protobuf/wire_format.cc +++ b/src/google/protobuf/wire_format.cc @@ -54,15 +54,6 @@ namespace google { namespace protobuf { namespace internal { -namespace { - -// This function turns out to be convenient when using some macros later. -inline int GetEnumNumber(const EnumValueDescriptor* descriptor) { - return descriptor->number(); -} - -} // anonymous namespace - // =================================================================== bool UnknownFieldSetFieldSkipper::SkipField( -- cgit v1.2.3