diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-19 15:46:49 +0200 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-05-19 15:57:56 +0200 |
| commit | 85220fec010a4946cb364974eac69418b4e06411 (patch) | |
| tree | c0b8b99f083180a03d0968c08cd0e6ca10b903b3 /core/make_binders.py | |
| parent | 9b3d43cb974dd3407fd0936e486e34b8cec436e7 (diff) | |
| download | redot-engine-85220fec010a4946cb364974eac69418b4e06411.tar.gz | |
Style: Remove unnecessary semicolons from `core`
Semicolons are not necessary after function definitions or control flow
blocks, and having some code use them makes things inconsistent (and
occasionally can mess up `clang-format`'s formatting).
Removing them is tedious work though, I had to do this manually (regex
+ manual review) as I couldn't find a tool for that. All other code
folders would need to get the same treatment.
Diffstat (limited to 'core/make_binders.py')
| -rw-r--r-- | core/make_binders.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/make_binders.py b/core/make_binders.py index 94bee95bfb..7d0d08cde6 100644 --- a/core/make_binders.py +++ b/core/make_binders.py @@ -75,7 +75,7 @@ public: #endif $ifret _set_returns(true); $ - }; + } }; template<class T $ifret ,class R$ $ifargs ,$ $arg, class P@$> @@ -170,7 +170,7 @@ public: $ifret _set_returns(true); $ - }; + } }; template<class T $ifret ,class R$ $ifargs ,$ $arg, class P@$> @@ -266,7 +266,7 @@ public: #endif $ifret _set_returns(true); $ - }; + } }; template<class T $ifret ,class R$ $ifargs ,$ $arg, class P@$> |
