From dc2fd29b378aae1597fdc1954da0e01f75816bd4 Mon Sep 17 00:00:00 2001 From: musil Date: Tue, 7 Nov 2006 17:11:40 +0000 Subject: makefile_win makefile_linux update we dont need #if MSW_VER chanched float to t_float svn path=/trunk/externals/iemlib/; revision=6221 --- src/iemlib2/iem_sel_any.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/iemlib2/iem_sel_any.c') diff --git a/src/iemlib2/iem_sel_any.c b/src/iemlib2/iem_sel_any.c index 930b33d..a75a086 100644 --- a/src/iemlib2/iem_sel_any.c +++ b/src/iemlib2/iem_sel_any.c @@ -3,10 +3,6 @@ iemlib2 written by Thomas Musil, Copyright (c) IEM KUG Graz Austria 2000 - 2005 */ -#ifdef _MSC_VER -#pragma warning( disable : 4244 ) -#pragma warning( disable : 4305 ) -#endif #include "m_pd.h" #include "iemlib.h" @@ -32,7 +28,7 @@ typedef struct _iem_sel_any } t_iem_sel_any; -static void iem_sel_any_float(t_iem_sel_any *x, t_float f) +static void iem_sel_any_float(t_iem_sel_any *x, t_floatarg f) { int i = (int)f; t_atom at; @@ -82,7 +78,7 @@ static void iem_sel_any_free(t_iem_sel_any *x) freebytes(x->x_any, x->x_max_ac * sizeof(t_symbol *)); } -static void *iem_sel_any_new(t_float fmax) +static void *iem_sel_any_new(t_floatarg fmax) { t_iem_sel_any *x = (t_iem_sel_any *)pd_new(iem_sel_any_class); int i; -- cgit v1.2.1