summaryrefslogtreecommitdiff
path: root/modules/gdnative/nativescript
diff options
context:
space:
mode:
authorJohnJLight <johnjosephlight@gmail.com>2019-03-19 14:35:57 -0400
committerRĂ©mi Verschelde <rverschelde@gmail.com>2019-06-19 15:24:31 +0200
commit38d3bfe971155bc7b0bdc8a10e059f9479d1eb5d (patch)
tree5080c8aa70ccb5c0692b3085baab4888df3ed19c /modules/gdnative/nativescript
parent43a9b8c76cd185c175e9458a2b7ce972c8b84f03 (diff)
Made use of semicolons more consitent, fixed formatting
Diffstat (limited to 'modules/gdnative/nativescript')
-rw-r--r--modules/gdnative/nativescript/nativescript.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdnative/nativescript/nativescript.h b/modules/gdnative/nativescript/nativescript.h
index d60e3ae1ae..79a41df107 100644
--- a/modules/gdnative/nativescript/nativescript.h
+++ b/modules/gdnative/nativescript/nativescript.h
@@ -99,7 +99,7 @@ struct NativeScriptDesc {
};
class NativeScript : public Script {
- GDCLASS(NativeScript, Script)
+ GDCLASS(NativeScript, Script);
#ifdef TOOLS_ENABLED
Set<PlaceHolderScriptInstance *> placeholders;
@@ -370,7 +370,7 @@ inline NativeScriptDesc *NativeScript::get_script_desc() const {
}
class NativeReloadNode : public Node {
- GDCLASS(NativeReloadNode, Node)
+ GDCLASS(NativeReloadNode, Node);
bool unloaded;
public: