Skip to content

Commit 45051e1

Browse files
authored
Merge pull request godotengine#8505 from pseidemann/patch-2
add missing override modifier for _process()
2 parents 7344167 + 067170f commit 45051e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/scripting/gdextension/gdextension_cpp_example.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ GDExtension node we'll be creating. We will name it ``gdexample.h``:
181181
GDExample();
182182
~GDExample();
183183
184-
void _process(double delta);
184+
void _process(double delta) override;
185185
};
186186
187187
}

0 commit comments

Comments
 (0)