diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-06-11 19:01:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-11 19:01:26 +0200 |
commit | 4043c8a8c980298e22ac0fa7a8955f19411f9148 (patch) | |
tree | 76829765e10fbf61140f640ff23b8e8ac9958b82 /platform/iphone/icloud.mm | |
parent | 15425b450f6c531271be637aecd7fe3cb7d314ba (diff) | |
parent | 6d16f2f053248bff4b72e847904500f760babc35 (diff) |
Merge pull request #29678 from akien-mga/err-macros-semicolon
Fix error macro calls not ending with semicolon
Diffstat (limited to 'platform/iphone/icloud.mm')
-rw-r--r-- | platform/iphone/icloud.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/iphone/icloud.mm b/platform/iphone/icloud.mm index e32618e8f6..c60db3d661 100644 --- a/platform/iphone/icloud.mm +++ b/platform/iphone/icloud.mm @@ -138,7 +138,7 @@ Variant nsobject_to_variant(NSObject *object) { //this is a type that icloud supports...but how did you submit it in the first place? //I guess this is a type that *might* show up, if you were, say, trying to make your game //compatible with existing cloud data written by another engine's version of your game - WARN_PRINT("NSDate unsupported, returning null Variant") + WARN_PRINT("NSDate unsupported, returning null Variant"); return Variant(); } else if ([object isKindOfClass:[NSNull class]] or object == nil) { return Variant(); |