Replace NULL with nullptr or null in webrtc/base/.
BUG=webrtc:7147 Review-Url: https://codereview.webrtc.org/2718663005 Cr-Commit-Position: refs/heads/master@{#16878}
This commit is contained in:
@ -43,7 +43,7 @@ const char DEFAULT_FOLDER_DELIM = '/';
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
bool Pathname::IsFolderDelimiter(char ch) {
|
||||
return (NULL != ::strchr(FOLDER_DELIMS, ch));
|
||||
return (nullptr != ::strchr(FOLDER_DELIMS, ch));
|
||||
}
|
||||
|
||||
char Pathname::DefaultFolderDelimiter() {
|
||||
|
||||
Reference in New Issue
Block a user