Unverified Commit 39f577c3 authored by Jisi Liu's avatar Jisi Liu Committed by GitHub

Merge pull request #4124 from pherl/nullptr

remove nullptr
parents 5b1caea0 4f3d8657
...@@ -91,7 +91,7 @@ struct CharTraits<wchar_t> { ...@@ -91,7 +91,7 @@ struct CharTraits<wchar_t> {
template <typename char_type> template <typename char_type>
bool null_or_empty(const char_type* s) { 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:". // Returns true if the path starts with a drive letter, e.g. "c:".
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment