]> Kevux Git Server - fll/commitdiff
Update: Add none enumeration for fake_build_type_*_e.
authorKevin Day <Kevin@kevux.org>
Thu, 8 May 2025 03:34:07 +0000 (22:34 -0500)
committerKevin Day <Kevin@kevux.org>
Thu, 8 May 2025 03:34:07 +0000 (22:34 -0500)
level_3/fake/c/main/build/enumeration.h

index 31d38a64ba7b985058cd52026186fc67e36ca3fa..d5f33c32c41b9d2e4e0f7f14703fc743506431ce 100644 (file)
@@ -74,14 +74,16 @@ extern "C" {
 /**
  * Build Types.
  *
- * fake_build_type_*:
+ * fake_build_type_*_e:
+ *   - none:    No type.
  *   - library: A library build type.
  *   - object:  An object build type.
  *   - program: A program build type.
  */
 #ifndef _di_fake_build_type_e_
   enum {
-    fake_build_type_library_e = 1,
+    fake_build_type_none_e = 0,
+    fake_build_type_library_e,
     fake_build_type_object_e,
     fake_build_type_program_e,
   }; // enum