remove nullptr

pull/4124/head
Jisi Liu 7 years ago
parent 88e5573b9a
commit 4f3d8657c3
  1. 2
      src/google/protobuf/stubs/io_win32.cc

@ -91,7 +91,7 @@ struct CharTraits<wchar_t> {
template <typename char_type>
bool null_or_empty(const char_type* s) {
return s == nullptr || *s == 0;
return s == NULL || *s == 0;
}
// Returns true if the path starts with a drive letter, e.g. "c:".

Loading…
Cancel
Save