mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-25 23:36:16 +02:00
C API: remove unused argument
This commit is contained in:
parent
925a8fda6e
commit
061140fc8f
3 changed files with 3 additions and 3 deletions
|
@ -448,7 +448,7 @@ void nix_list_builder_free(ListBuilder * list_builder)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
nix_err nix_make_list(nix_c_context * context, EvalState * s, ListBuilder * list_builder, Value * value)
|
nix_err nix_make_list(nix_c_context * context, ListBuilder * list_builder, Value * value)
|
||||||
{
|
{
|
||||||
if (context)
|
if (context)
|
||||||
context->last_err_code = NIX_OK;
|
context->last_err_code = NIX_OK;
|
||||||
|
|
|
@ -347,7 +347,7 @@ nix_err nix_init_external(nix_c_context * context, Value * value, ExternalValue
|
||||||
* @param[out] value Nix value to modify
|
* @param[out] value Nix value to modify
|
||||||
* @return error code, NIX_OK on success.
|
* @return error code, NIX_OK on success.
|
||||||
*/
|
*/
|
||||||
nix_err nix_make_list(nix_c_context * context, EvalState * s, ListBuilder * list_builder, Value * value);
|
nix_err nix_make_list(nix_c_context * context, ListBuilder * list_builder, Value * value);
|
||||||
|
|
||||||
/** @brief Create a list builder
|
/** @brief Create a list builder
|
||||||
* @param[out] context Optional, stores error information
|
* @param[out] context Optional, stores error information
|
||||||
|
|
|
@ -78,7 +78,7 @@ TEST_F(nix_api_expr_test, nix_build_and_init_list)
|
||||||
Value * intValue = nix_alloc_value(nullptr, state);
|
Value * intValue = nix_alloc_value(nullptr, state);
|
||||||
nix_init_int(nullptr, intValue, 42);
|
nix_init_int(nullptr, intValue, 42);
|
||||||
nix_list_builder_insert(nullptr, builder, 0, intValue);
|
nix_list_builder_insert(nullptr, builder, 0, intValue);
|
||||||
nix_make_list(nullptr, state, builder, value);
|
nix_make_list(nullptr, builder, value);
|
||||||
nix_list_builder_free(builder);
|
nix_list_builder_free(builder);
|
||||||
|
|
||||||
ASSERT_EQ(42, nix_get_int(nullptr, nix_get_list_byidx(nullptr, value, state, 0)));
|
ASSERT_EQ(42, nix_get_int(nullptr, nix_get_list_byidx(nullptr, value, state, 0)));
|
||||||
|
|
Loading…
Reference in a new issue