Fix inline bug, build.sh
All checks were successful
CMake / ubuntu-latest - shared=OFF, pthread=OFF, posix=OFF (push) Successful in 16s
CMake / ubuntu-latest - shared=ON, pthread=OFF, posix=OFF (push) Successful in 18s
CMake / ubuntu-latest - shared=OFF, pthread=OFF, posix=ON (push) Successful in 16s
CMake / ubuntu-latest - shared=ON, pthread=OFF, posix=ON (push) Successful in 17s
CMake / ubuntu-latest - shared=OFF, pthread=ON, posix=ON (push) Successful in 15s
CMake / ubuntu-latest - shared=ON, pthread=ON, posix=ON (push) Successful in 12s

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-07-26 23:46:46 +03:00
parent e49654efb1
commit 874a2e234b
2 changed files with 13 additions and 10 deletions

View File

@@ -99,7 +99,8 @@ static inline bool dcfg_Value_get_array_item(
{
return dcfg_Value_get_array_item_ex(value, index, out_value, true);
}
bool dcfg_Value_get_function_body(dcfg_Value *value, dcfg_Value **out_value)
static inline bool dcfg_Value_get_function_body(
dcfg_Value *value, dcfg_Value **out_value)
{
return dcfg_Value_get_function_body_ex(value, out_value, true);
}