diff options
| author | Hein-Pieter van Braam <hp@tmm.cx> | 2018-08-20 15:02:09 +0200 |
|---|---|---|
| committer | Hein-Pieter van Braam <hp@tmm.cx> | 2018-08-20 15:02:09 +0200 |
| commit | e9a35c2c6b5012c3a041a64851bf7ca6ba656730 (patch) | |
| tree | 966d34fdc551a0e9a996a5c1e6a6c65596d99bfb | |
| parent | 1eb1606f34f0696eb5f1694a3fc563125ad914b8 (diff) | |
Remove a stray semicolon
This was causing a lot of compiler warnings for no good reason.
| -rw-r--r-- | editor/editor_plugin_settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_plugin_settings.h b/editor/editor_plugin_settings.h index 310cab699f..194fac6b92 100644 --- a/editor/editor_plugin_settings.h +++ b/editor/editor_plugin_settings.h @@ -31,7 +31,7 @@ #ifndef EDITORPLUGINSETTINGS_H #define EDITORPLUGINSETTINGS_H -#include "editor/plugin_config_dialog.h"; +#include "editor/plugin_config_dialog.h" #include "editor_data.h" #include "property_editor.h" #include "scene/gui/dialogs.h" |