lemon/core.h
changeset 1138 18c89646185e
parent 1136 1d80ec7d17eb
child 1144 c199e9976d93
     1.1 --- a/lemon/core.h	Thu Apr 02 10:03:35 2015 +0200
     1.2 +++ b/lemon/core.h	Thu Apr 02 12:57:18 2015 +0200
     1.3 @@ -29,12 +29,13 @@
     1.4  
     1.5  // Disable the following warnings when compiling with MSVC:
     1.6  // C4250: 'class1' : inherits 'class2::member' via dominance
     1.7 +// C4267: conversion from 'size_t' to 'type', possible loss of data
     1.8  // C4355: 'this' : used in base member initializer list
     1.9  // C4503: 'function' : decorated name length exceeded, name was truncated
    1.10  // C4800: 'type' : forcing value to bool 'true' or 'false' (performance warning)
    1.11  // C4996: 'function': was declared deprecated
    1.12  #ifdef _MSC_VER
    1.13 -#pragma warning( disable : 4250 4355 4503 4800 4996 )
    1.14 +#pragma warning( disable : 4250 4267 4355 4503 4800 4996 )
    1.15  #endif
    1.16  
    1.17  #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8)