Skip to content
Snippets Groups Projects
Commit c089743f authored by Vijay Pai's avatar Vijay Pai
Browse files

Remove explicit reference to nullptr since this isn't within

grpc namespace and not supported by older compilers. Not sure
why I didn't catch this earlier.
parent 6284cdb0
No related branches found
No related tags found
No related merge requests found
...@@ -249,7 +249,7 @@ bool GetModuleAndMessagePath(const Descriptor* type, ...@@ -249,7 +249,7 @@ bool GetModuleAndMessagePath(const Descriptor* type,
do { do {
message_path.push_back(path_elem_type); message_path.push_back(path_elem_type);
path_elem_type = path_elem_type->containing_type(); path_elem_type = path_elem_type->containing_type();
} while (path_elem_type != nullptr); } while (path_elem_type); // implicit nullptr comparison; don't be explicit
grpc::string file_name = type->file()->name(); grpc::string file_name = type->file()->name();
static const int proto_suffix_length = strlen(".proto"); static const int proto_suffix_length = strlen(".proto");
if (!(file_name.size() > static_cast<size_t>(proto_suffix_length) && if (!(file_name.size() > static_cast<size_t>(proto_suffix_length) &&
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment