File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -214,15 +214,15 @@ struct ReflectionSchema {
214214
215215 // Returns true if the field's accessor is called by any external code (aka,
216216 // non proto library code).
217- bool IsFieldUsed (const FieldDescriptor* field) const {
217+ bool IsFieldUsed (const FieldDescriptor* /* field */ ) const {
218218 return true ;
219219 }
220220
221- bool IsFieldStripped (const FieldDescriptor* field) const {
221+ bool IsFieldStripped (const FieldDescriptor* /* field */ ) const {
222222 return false ;
223223 }
224224
225- bool IsMessageStripped (const Descriptor* descriptor) const {
225+ bool IsMessageStripped (const Descriptor* /* descriptor */ ) const {
226226 return false ;
227227 }
228228
Original file line number Diff line number Diff line change @@ -1045,7 +1045,7 @@ class PROTOBUF_EXPORT Reflection final {
10451045 const OneofDescriptor* oneof_descriptor) const ;
10461046 inline uint32* MutableOneofCase (
10471047 Message* message, const OneofDescriptor* oneof_descriptor) const ;
1048- inline bool HasExtensionSet (const Message& message) const {
1048+ inline bool HasExtensionSet (const Message& /* message */ ) const {
10491049 return schema_.HasExtensionSet ();
10501050 }
10511051 const internal::ExtensionSet& GetExtensionSet (const Message& message) const ;
You can’t perform that action at this time.
0 commit comments