godot/modules/gdnative
Rémi Verschelde 07bc4e2f96 Style: Enforce separation line between function definitions
I couldn't find a tool that enforces it, so I went the manual route:
```
find -name "thirdparty" -prune \
  -o -name "*.cpp" -o -name "*.h" -o -name "*.m" -o -name "*.mm" \
  -o -name "*.glsl" > files
perl -0777 -pi -e 's/\n}\n([^#])/\n}\n\n\1/g' $(cat files)
misc/scripts/fix_style.sh -c
```

This adds a newline after all `}` on the first column, unless they
are followed by `#` (typically `#endif`). This leads to having lots
of places with two lines between function/class definitions, but
clang-format then fixes it as we enforce max one line of separation.

This doesn't fix potential occurrences of function definitions which
are indented (e.g. for a helper class defined in a .cpp), but it's
better than nothing. Also can't be made to run easily on CI/hooks so
we'll have to be careful with new code.

Part of #33027.
2020-05-14 16:54:55 +02:00
..
android Replace NULL with nullptr 2020-04-02 13:38:00 +02:00
doc_classes Renaming all ARVR nodes to XR 2020-04-09 15:33:01 +10:00
gdnative Style: Enforce separation line between function definitions 2020-05-14 16:54:55 +02:00
icons Fix missing module editor icons 2020-03-08 19:32:25 +02:00
include Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2020-05-14 16:54:55 +02:00
nativescript Style: Enforce separation line between function definitions 2020-05-14 16:54:55 +02:00
net Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2020-05-14 16:54:55 +02:00
pluginscript Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2020-05-14 16:54:55 +02:00
videodecoder Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2020-05-14 16:54:55 +02:00
xr Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2020-05-14 16:54:55 +02:00
config.py Renaming all ARVR nodes to XR 2020-04-09 15:33:01 +10:00
gdnative.cpp Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2020-05-14 16:54:55 +02:00
gdnative.h Exposed RenderingDevice to script API 2020-04-20 21:21:58 -03:00
gdnative_api.json Revert "Renamed plane's d to distance" 2020-05-10 16:47:11 +02:00
gdnative_builders.py Renaming all ARVR nodes to XR 2020-04-09 15:33:01 +10:00
gdnative_library_editor_plugin.cpp Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2020-05-14 16:54:55 +02:00
gdnative_library_editor_plugin.h Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2020-05-14 16:54:55 +02:00
gdnative_library_singleton_editor.cpp Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2020-05-14 16:54:55 +02:00
gdnative_library_singleton_editor.h Update copyright statements to 2020 2020-01-01 11:16:22 +01:00
register_types.cpp Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks 2020-05-14 16:54:55 +02:00
register_types.h Adding missing include guards to header files identified by LGTM. 2020-03-23 04:52:36 -04:00
SCsub Renaming all ARVR nodes to XR 2020-04-09 15:33:01 +10:00