Opened 10 years ago
#8390 new Bugs
type conversion warning in VC11
Reported by: | Owned by: | Jonathan Turkanis | |
---|---|---|---|
Milestone: | To Be Determined | Component: | iostreams |
Version: | Boost 1.53.0 | Severity: | Problem |
Keywords: | Cc: |
Description
+++ b/3rd-party/boost/boost/iostreams/copy.hpp Thu Apr 04 12:53:57 2013 +0200 @@ -125,7 +125,14 @@
mpl::false_, mpl::false_ )
{
typedef typename char_type_of<Source>::type char_type;
+#ifdef BOOST_WINDOWS_API +#pragma warning(push) +#pragma warning(disable : 4244) +#endif
detail::basic_buffer<char_type> buf(buffer_size);
+#ifdef BOOST_WINDOWS_API +#pragma warning(pop) +#endif
Note:
See TracTickets
for help on using tickets.