]> Kevux Git Server - fll/commitdiff
Cleanup: Enumerations comment and ordering in Featureless Make.
authorKevin Day <kevin@kevux.org>
Thu, 16 Feb 2023 05:59:56 +0000 (23:59 -0600)
committerKevin Day <kevin@kevux.org>
Thu, 16 Feb 2023 05:59:56 +0000 (23:59 -0600)
level_3/fake/c/common.h
level_3/fake/c/private-common.h

index ba6a0ed0e85a3a617ae3424c3dd8ba344d879a87..04c0e51fe1c27a73f12d9ec69c8dccc9a5ebe442 100644 (file)
@@ -209,7 +209,7 @@ extern "C" {
     fake_build_language_type_bash_e = 1,
     fake_build_language_type_c_e,
     fake_build_language_type_cpp_e,
-  };
+  }; // enum
 
   #define FAKE_build_language_bash_s "bash"
   #define FAKE_build_language_c_s    "c"
@@ -233,7 +233,7 @@ extern "C" {
     fake_build_version_type_minor_e,
     fake_build_version_type_micro_e,
     fake_build_version_type_nano_e,
-  };
+  }; // enum
 
   #define FAKE_build_version_major_s "major"
   #define FAKE_build_version_minor_s "minor"
@@ -260,7 +260,7 @@ extern "C" {
     fake_operation_clean_e,
     fake_operation_make_e,
     fake_operation_skeleton_e,
-  };
+  }; // enum
 
   #define fake_signal_check_d       500000
   #define fake_signal_check_tiny_d  4
@@ -412,7 +412,7 @@ extern "C" {
     fake_parameter_operation_clean_e,
     fake_parameter_operation_make_e,
     fake_parameter_operation_skeleton_e,
-  };
+  }; // enum
 
   #define fake_console_parameter_t_initialize \
     { \
index c83db28c34b4aad533eb100d2efd373328bad3ac..74e3784db6fda20a0296b8ce5bc396f6b2c85642 100644 (file)
@@ -82,7 +82,7 @@ extern "C" {
 #ifndef _di_fake_data_t_
   enum {
     fake_data_flag_has_operation_e = 0x1,
-  };
+  }; // enum
 
   typedef struct {
     fll_program_data_t *main;
@@ -312,7 +312,7 @@ extern "C" {
 #ifndef _di_fake_build_setting_t_
   enum {
     data_build_setting_flag_has_environment_e = 0x1,
-  };
+  }; // enum
 
   typedef struct {
     uint8_t flag;
@@ -1348,7 +1348,7 @@ extern "C" {
     fake_make_operation_type_top_e,
     fake_make_operation_type_touch_e,
     fake_make_operation_type_write_e,
-  };
+  }; // enum
 
   // Total does not include "fake_make_operation_type_none_e".
   #define fake_make_operation_total_d 35
@@ -1490,13 +1490,13 @@ extern "C" {
     fake_make_operation_if_type_if_parameter_e,
     fake_make_operation_if_type_if_owner_e,
     fake_make_operation_if_type_if_success_e,
-  };
+  }; // enum
 
   enum {
     fake_make_operation_fail_type_exit_e = 1,
-    fake_make_operation_fail_type_warn_e,
     fake_make_operation_fail_type_ignore_e,
-  };
+    fake_make_operation_fail_type_warn_e,
+  }; // enum
 
   #define fake_make_operation_recursion_depth_max_d 65535
 #endif // _di_fake_make_operation_
@@ -1810,7 +1810,7 @@ extern "C" {
     fake_state_process_block_operate_e,
     fake_state_process_block_skip_e,
     fake_state_process_block_done_e,
-  };
+  }; // enum
 #endif // _di_fake_state_process_block_
 
 /**
@@ -1828,7 +1828,7 @@ extern "C" {
     fake_condition_result_false_e,
     fake_condition_result_true_e,
     fake_condition_result_error_e,
-  };
+  }; // enum
 #endif // _di_fake_condition_result_
 
 #ifndef _di_fake_skeleton_content_