From db23221734e5eeade7a258eb644edf09f3c5c903 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 12 Aug 2023 19:46:35 -0500 Subject: [PATCH] Cleanup: Remove double "const" and add missing changes that were supposed to be in the previous progress commit. The previous progress commit is 8a9248d98b54f39824a335da036b7671d05bae1f. --- build/stand_alone/fake.config.h | 16 +++------------- level_0/f_memory/c/memory/private-array.h | 2 +- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/build/stand_alone/fake.config.h b/build/stand_alone/fake.config.h index 83922f3..508d835 100644 --- a/build/stand_alone/fake.config.h +++ b/build/stand_alone/fake.config.h @@ -24,22 +24,12 @@ #define _di_f_account_group_name_by_id_ //#define _di_f_account_id_by_name_ #define _di_f_account_name_by_id_ -#define _di_f_accounts_adjust_ +#define _di_f_accounts_adjust_callback_ #define _di_f_accounts_append_ #define _di_f_accounts_append_all_ -#define _di_f_accounts_decimate_by_ -#define _di_f_accounts_decrease_by_ -#define _di_f_accounts_increase_ -#define _di_f_accounts_increase_by_ -#define _di_f_accounts_resize_ -#define _di_f_accountss_adjust_ +#define _di_f_accounts_resize_callback_ #define _di_f_accountss_append_ #define _di_f_accountss_append_all_ -#define _di_f_accountss_decimate_by_ -#define _di_f_accountss_decrease_by_ -#define _di_f_accountss_increase_ -#define _di_f_accountss_increase_by_ -#define _di_f_accountss_resize_ #define _di_f_accountss_t_ #define _di_f_accounts_t_ //#define _di_f_account_t_ @@ -671,7 +661,7 @@ #define _di_f_iki_datas_adjust_callback_ #define _di_f_iki_datas_append_ #define _di_f_iki_datas_append_all_ -#define _di_f_iki_datas_resize_callack_ +#define _di_f_iki_datas_resize_callback_ #define _di_f_iki_datass_append_ #define _di_f_iki_datass_append_all_ #define _di_f_iki_datass_t_ diff --git a/level_0/f_memory/c/memory/private-array.h b/level_0/f_memory/c/memory/private-array.h index f04866c..65ebbfc 100644 --- a/level_0/f_memory/c/memory/private-array.h +++ b/level_0/f_memory/c/memory/private-array.h @@ -42,7 +42,7 @@ extern "C" { * @see f_memory_adjust() */ #if !defined(_di_f_memory_array_adjust_) || !defined(_di_f_memory_array_decimate_by_) - extern f_status_t private_f_memory_array_adjust(const f_number_unsigned_t length, const size_t width, void ** const const array, f_number_unsigned_t * const used, f_number_unsigned_t * const size) F_attribute_visibility_internal_d; + extern f_status_t private_f_memory_array_adjust(const f_number_unsigned_t length, const size_t width, void ** const array, f_number_unsigned_t * const used, f_number_unsigned_t * const size) F_attribute_visibility_internal_d; #endif // !defined(_di_f_memory_array_adjust_) || !defined(_di_f_memory_array_decimate_by_) /** -- 1.8.3.1