From 5abc721d638ff51bc38a83a3846d0b034cac3761 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Sat, 29 Oct 2005 14:51:32 +0000 Subject: Replace sv_force_normal with a macro that calls sv_force_normal_flags. p4raw-id: //depot/perl@25879 --- sv.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sv.h') diff --git a/sv.h b/sv.h index 8dbbcb287c..2dc1d8c778 100644 --- a/sv.h +++ b/sv.h @@ -1349,7 +1349,8 @@ Like C but doesn't process magic. #define SV_CONST_RETURN 32 #define SV_MUTABLE_RETURN 64 -#define sv_unref(sv) sv_unref_flags(sv, 0) +#define sv_unref(sv) sv_unref_flags(sv, 0) +#define sv_force_normal(sv) sv_force_normal_flags(sv, 0) /* We are about to replace the SV's current value. So if it's copy on write we need to normalise it. Use the SV_COW_DROP_PV flag hint to say that -- cgit v1.2.1