summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2022-11-26 19:09:12 +0100
committerMatthias Melcher <github@matthiasm.com>2022-11-26 19:09:12 +0100
commite1a781717e5f8ef4f2772c5a1b36db8f0244e806 (patch)
tree86d910f2844409513579cc705f62db583600706b
parent1d04c75508a839755a5c47d0b76ffdde3766fc23 (diff)
Remove unintentional C++11
-rw-r--r--fluid/fluid.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fluid/fluid.h b/fluid/fluid.h
index ea435abe9..ac2f8fbe6 100644
--- a/fluid/fluid.h
+++ b/fluid/fluid.h
@@ -110,8 +110,8 @@ public:
int use_FL_COMMAND;
int utf8_in_src;
int avoid_early_includes;
- int header_file_set = 0;
- int code_file_set = 0;
+ int header_file_set;
+ int code_file_set;
Fd_String header_file_name;
Fd_String code_file_name;
};