aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkDataTable.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/core/SkDataTable.h')
-rw-r--r--include/core/SkDataTable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/core/SkDataTable.h b/include/core/SkDataTable.h
index f8aba9a559..a46f74efba 100644
--- a/include/core/SkDataTable.h
+++ b/include/core/SkDataTable.h
@@ -42,10 +42,10 @@ public:
* @param size If non-null, this returns the byte size of this entry. This
* will be the same value that atSize(index) would return.
*/
- const void* at(int index, size_t* size = NULL) const;
+ const void* at(int index, size_t* size = nullptr) const;
template <typename T>
- const T* atT(int index, size_t* size = NULL) const {
+ const T* atT(int index, size_t* size = nullptr) const {
return reinterpret_cast<const T*>(this->at(index, size));
}