Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Unified Diff: webrtc/base/base64.h

Issue 2718663005: Replace NULL with nullptr or null in webrtc/base/. (Closed)
Patch Set: Manually fixing a few things. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/base/base64.h
diff --git a/webrtc/base/base64.h b/webrtc/base/base64.h
index 903e77e5f95aa3f3c40efcef52159f7f26844ca5..eba3cc0d1d10ca8586b589dfc790e5c46c2e7fd9 100644
--- a/webrtc/base/base64.h
+++ b/webrtc/base/base64.h
@@ -83,7 +83,7 @@ class Base64 {
}
static inline std::string Decode(const std::string& data, DecodeFlags flags) {
std::string result;
- DecodeFromArray(data.data(), data.size(), flags, &result, NULL);
+ DecodeFromArray(data.data(), data.size(), flags, &result, nullptr);
return result;
}
static inline bool Decode(const std::string& data,

Powered by Google App Engine
This is Rietveld 408576698