Suppress some VS2013 warnings when compiling gtk ui

svn path=/trunk/; revision=52880
This commit is contained in:
Pascal Quantin 2013-10-26 21:04:53 +00:00
parent 01c2eecc35
commit ef24e09f5d
3 changed files with 12 additions and 9 deletions

View File

@ -343,7 +343,8 @@ static void graph_get_bounds(struct graph *);
static void graph_read_config(struct graph *);
static void rlc_lte_make_elmtlist(struct graph *);
#if defined(_WIN32) && !defined(__MINGW32__)
#if defined(_WIN32) && !defined(__MINGW32__) && (_MSC_VER < 1800)
/* Starting VS2013, rint already defined in math.h. No need to redefine */
static int rint(double ); /* compiler template for Windows */
#endif
@ -2991,8 +2992,8 @@ static void rlc_lte_make_elmtlist(struct graph *g)
g->elists->next->elements = elements1;
}
#if defined(_WIN32) && !defined(__MINGW32__)
#if defined(_WIN32) && !defined(__MINGW32__) && (_MSC_VER < 1800)
/* Starting VS2013, rint already defined in math.h. N o need to redefine */
/* replacement of Unix rint() for Windows */
static int rint(double x)
{
@ -3007,4 +3008,3 @@ static int rint(double x)
return i;
}
#endif

View File

@ -133,7 +133,8 @@ static guint32 max_tsn=0, min_tsn=0;
static void sctp_graph_set_title(struct sctp_udata *u_data);
static void create_draw_area(GtkWidget *box, struct sctp_udata *u_data);
static GtkWidget *zoomout_bt;
#if defined(_WIN32) && !defined(__MINGW32__)
#if defined(_WIN32) && !defined(__MINGW32__) && (_MSC_VER < 1800)
/* Starting VS2013, rint already defined in math.h. No need to redefine */
static int rint (double ); /* compiler template for Windows */
#endif
@ -1857,7 +1858,8 @@ create_graph(guint16 dir, struct sctp_analyse* userdata)
}
}
#if defined(_WIN32) && !defined(__MINGW32__)
#if defined(_WIN32) && !defined(__MINGW32__) && (_MSC_VER < 1800)
/* Starting VS2013, rint already defined in math.h. No need to redefine */
/* replacement of Unix rint() for Windows */
static int
rint (double x)

View File

@ -460,7 +460,8 @@ static void rtt_toggle_seq_origin(struct gtk_graph * );
static void wscale_initialize(struct gtk_graph *);
static void wscale_read_config(struct gtk_graph *);
static void wscale_make_elmtlist(struct gtk_graph *);
#if defined(_WIN32) && !defined(__MINGW32__)
#if defined(_WIN32) && !defined(__MINGW32__) && (_MSC_VER < 1800)
/* Starting VS2013, rint already defined in math.h. No need to redefine */
static int rint(double ); /* compiler template for Windows */
#endif
@ -4478,8 +4479,8 @@ static void wscale_make_elmtlist(struct gtk_graph *g)
g->elists->elements = elements;
}
#if defined(_WIN32) && !defined(__MINGW32__)
#if defined(_WIN32) && !defined(__MINGW32__) && (_MSC_VER < 1800)
/* Starting VS2103, rint already defined in math.h. No need to redefine */
/* replacement of Unix rint() for Windows */
static int rint(double x)
{