aboutsummaryrefslogtreecommitdiff
path: root/src/google/protobuf/struct.pb.cc
diff options
context:
space:
mode:
authorKhing <khingblue@gmail.com>2016-09-07 11:34:03 +1000
committerKhing <khingblue@gmail.com>2016-09-08 10:56:21 +1000
commit08b1c718e437041bfe0e6a28611621896e4fe904 (patch)
tree80b9c7484cf988c5be7466e2c030a8d16a5e9f74 /src/google/protobuf/struct.pb.cc
parent30e55aecc19b5e759a4fcd4b7a2a75be66bf3a8d (diff)
downloadprotobuf-08b1c718e437041bfe0e6a28611621896e4fe904.tar.gz
protobuf-08b1c718e437041bfe0e6a28611621896e4fe904.tar.bz2
protobuf-08b1c718e437041bfe0e6a28611621896e4fe904.zip
Fix #2032 unused parameter 'deterministic'
Parameter deterministic is unused in InternalSerializeWithCachedSizesToArray(), which generates unused parameter warning in every message.
Diffstat (limited to 'src/google/protobuf/struct.pb.cc')
-rw-r--r--src/google/protobuf/struct.pb.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/google/protobuf/struct.pb.cc b/src/google/protobuf/struct.pb.cc
index a551384c..998ea0e0 100644
--- a/src/google/protobuf/struct.pb.cc
+++ b/src/google/protobuf/struct.pb.cc
@@ -394,6 +394,7 @@ void Struct::SerializeWithCachedSizes(
::google::protobuf::uint8* Struct::InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const {
+ (void)deterministic; // Unused
// @@protoc_insertion_point(serialize_to_array_start:google.protobuf.Struct)
// map<string, .google.protobuf.Value> fields = 1;
if (!this->fields().empty()) {
@@ -847,6 +848,7 @@ void Value::SerializeWithCachedSizes(
::google::protobuf::uint8* Value::InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const {
+ (void)deterministic; // Unused
// @@protoc_insertion_point(serialize_to_array_start:google.protobuf.Value)
// optional .google.protobuf.NullValue null_value = 1;
if (has_null_value()) {
@@ -1444,6 +1446,7 @@ void ListValue::SerializeWithCachedSizes(
::google::protobuf::uint8* ListValue::InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const {
+ (void)deterministic; // Unused
// @@protoc_insertion_point(serialize_to_array_start:google.protobuf.ListValue)
// repeated .google.protobuf.Value values = 1;
for (unsigned int i = 0, n = this->values_size(); i < n; i++) {