mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
C API: source argument to nix_copy_value should be const
This commit is contained in:
parent
8d70db3251
commit
6acf02b32a
3 changed files with 15 additions and 2 deletions
|
@ -513,7 +513,7 @@ nix_err nix_init_primop(nix_c_context * context, Value * value, PrimOp * p)
|
||||||
NIXC_CATCH_ERRS
|
NIXC_CATCH_ERRS
|
||||||
}
|
}
|
||||||
|
|
||||||
nix_err nix_copy_value(nix_c_context * context, Value * value, Value * source)
|
nix_err nix_copy_value(nix_c_context * context, Value * value, const Value * source)
|
||||||
{
|
{
|
||||||
if (context)
|
if (context)
|
||||||
context->last_err_code = NIX_OK;
|
context->last_err_code = NIX_OK;
|
||||||
|
|
|
@ -422,7 +422,7 @@ nix_err nix_init_primop(nix_c_context * context, Value * value, PrimOp * op);
|
||||||
* @param[in] source value to copy from
|
* @param[in] source value to copy from
|
||||||
* @return error code, NIX_OK on success.
|
* @return error code, NIX_OK on success.
|
||||||
*/
|
*/
|
||||||
nix_err nix_copy_value(nix_c_context * context, Value * value, Value * source);
|
nix_err nix_copy_value(nix_c_context * context, Value * value, const Value * source);
|
||||||
/**@}*/
|
/**@}*/
|
||||||
|
|
||||||
/** @brief Create a bindings builder
|
/** @brief Create a bindings builder
|
||||||
|
|
|
@ -367,4 +367,17 @@ TEST_F(nix_api_expr_test, nix_value_init_apply_lazy_arg)
|
||||||
nix_gc_decref(ctx, e);
|
nix_gc_decref(ctx, e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_F(nix_api_expr_test, nix_copy_value)
|
||||||
|
{
|
||||||
|
Value * source = nix_alloc_value(ctx, state);
|
||||||
|
|
||||||
|
nix_init_int(ctx, source, 42);
|
||||||
|
nix_copy_value(ctx, value, source);
|
||||||
|
|
||||||
|
ASSERT_EQ(42, nix_get_int(ctx, value));
|
||||||
|
|
||||||
|
// Clean up
|
||||||
|
nix_gc_decref(ctx, source);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue