Skip to content

Commit

Permalink
FLUID: cast an enum class tyoe
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthiasWM committed Nov 13, 2024
1 parent 184106d commit 96f9ec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fluid/file.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ int Fd_Project_Writer::write_project(const char *filename, int selected_only, bo
if (project().avoid_early_includes)
write_string("\navoid_early_includes");
if (project().i18n_type!=Fd_I18n_Type::NONE) {
write_string("\ni18n_type %d", project().i18n_type);
write_string("\ni18n_type %d", static_cast<int>(project().i18n_type));
switch (project().i18n_type) {
case Fd_I18n_Type::NONE:
break;
Expand Down

0 comments on commit 96f9ec6

Please sign in to comment.