Changes between Initial Version and Version 3 of Ticket #10083
- Timestamp:
- Jun 6, 2014, 10:47:23 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10083
- Property Owner set to
- Property Component None → signals2
-
Ticket #10083 – Description
initial v3 1 1 I'm trying to compile the following file: 2 2 3 4 {{{ 3 5 class Order {}; 4 6 … … 20 22 return 0; 21 23 } 24 }}} 25 22 26 23 27 Here's the compiler output I'm getting: 24 28 29 30 {{{ 25 31 1>C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\xmemory(348): warning C4996: 'std::_Uninitialized_copy0': Function call with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++ 'Checked Iterators' 26 32 1> C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\xmemory(333) : see declaration of 'std::_Uninitialized_copy0' … … 84 90 1> ] 85 91 1> c:\boost\boost/signals2/detail/slot_call_iterator.hpp(44) : see reference to class template instantiation 'boost::signals2::detail::slot_call_iterator_cache<ResultType,Function>' being compiled 92 }}}