newer standards prefer nullptr over NULL - this is most of them but there are others too

This commit is contained in:
DarthArgus
2016-02-11 15:16:14 -06:00
parent a7f2d0ea6a
commit 3e4cc36e7e
937 changed files with 14983 additions and 14983 deletions
@@ -56,7 +56,7 @@ const JNINativeMethod NATIVES[] = {
* @param self class calling this function
* @param id the stringId to find
*
* @return the string, or null on error
* @return the string, or nullptr on error
*/
jstring JNICALL ScriptMethodsStringNamespace::getString(JNIEnv *env, jobject self, jobject id)
{
@@ -64,7 +64,7 @@ jstring JNICALL ScriptMethodsStringNamespace::getString(JNIEnv *env, jobject sel
if (id == 0)
{
WARNING(true, ("JavaLibrary::log getString is NULL."));
WARNING(true, ("JavaLibrary::log getString is nullptr."));
return 0;
}
@@ -116,7 +116,7 @@ jstring JNICALL ScriptMethodsStringNamespace::getString(JNIEnv *env, jobject sel
* @param self class calling this function
* @param ids array of stringIds to find
*
* @return an array of strings, or null on error
* @return an array of strings, or nullptr on error
*/
jobjectArray JNICALL ScriptMethodsStringNamespace::getStrings(JNIEnv *env, jobject self, jobjectArray ids)
{