add missing #pragma warning disable (now using _MSC_VER)

svn path=/trunk/; revision=21227
This commit is contained in:
Ulf Lamping 2007-03-27 20:57:58 +00:00
parent f50a031bff
commit cc061b5521
3 changed files with 12 additions and 0 deletions

View File

@ -48,6 +48,10 @@
G_MODULE_EXPORT const gchar version[] = "0.0.1";
#endif
#ifdef _MSC_VER
/* disable warning: "unreference local variable" */
#pragma warning(disable:4101)
#endif
static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset);

View File

@ -48,6 +48,10 @@
G_MODULE_EXPORT const gchar version[] = "0.0.1";
#endif
#ifdef _MSC_VER
/* disable warning: "unreference local variable" */
#pragma warning(disable:4101)
#endif
static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset);

View File

@ -48,6 +48,10 @@
G_MODULE_EXPORT const gchar version[] = "0.0.1";
#endif
#ifdef _MSC_VER
/* disable warning: "unreference local variable" */
#pragma warning(disable:4101)
#endif
static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset);