summaryrefslogtreecommitdiff
path: root/rsScriptC.h
diff options
context:
space:
mode:
authorChris Wailes <chriswailes@google.com>2014-08-12 13:51:10 -0700
committerStephen Hines <srhines@google.com>2014-08-20 18:14:27 -0700
commit44bef6fba6244292b751387f3d6c31cca96c28ad (patch)
treea9dd48535a1f3343315bc75f7751cf042c05dc67 /rsScriptC.h
parent4bb773ef75eeff5960852b733bcca5834020ee9e (diff)
downloadrs-44bef6fba6244292b751387f3d6c31cca96c28ad.tar.gz
Replace NULL macros with nullptr literals.
Change-Id: I918c40879aa547438f77e7d1a95fa2aa33bec398
Diffstat (limited to 'rsScriptC.h')
-rw-r--r--rsScriptC.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsScriptC.h b/rsScriptC.h
index 5735bea3..86de5b23 100644
--- a/rsScriptC.h
+++ b/rsScriptC.h
@@ -49,11 +49,11 @@ public:
Allocation * aout,
const void * usr,
size_t usrBytes,
- const RsScriptCall *sc = NULL);
+ const RsScriptCall *sc = nullptr);
virtual void serialize(Context *rsc, OStream *stream) const { }
virtual RsA3DClassID getClassId() const { return RS_A3D_CLASS_ID_SCRIPT_C; }
- static Type *createFromStream(Context *rsc, IStream *stream) { return NULL; }
+ static Type *createFromStream(Context *rsc, IStream *stream) { return nullptr; }
bool runCompiler(Context *rsc, const char *resName, const char *cacheDir,
const uint8_t *bitcode, size_t bitcodeLen);