Ticket #3753: format.cpp.patch

File format.cpp.patch, 646 bytes (added by historic_bruno, 8 years ago)
  • source/third_party/cppformat/format.cpp

     
    251251    : arg_(arg), type_(type) {}
    252252
    253253  template <typename U>
     254#if _MSC_VER
     255__pragma(runtime_checks("c", off))
     256#endif
    254257  void visit_any_int(U value) {
    255258    bool is_signed = type_ == 'd' || type_ == 'i';
    256259    using fmt::internal::Arg;
     
    275278      }
    276279    }
    277280  }
     281#if _MSC_VER
     282__pragma(runtime_checks("c", restore))
     283#endif
    278284};
    279285
    280286// Converts an integer argument to char.