Changes between Initial Version and Version 1 of Ticket #11552
- Timestamp:
- Feb 18, 2017, 8:35:47 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11552 – Description
initial v1 1 1 Boost.Chrono is emitting warnings with GCC (5.1.0) that cannot be suppressed even using the following cxxflags in the user jamfile 2 2 3 4 {{{ 3 5 <toolset>gcc:<cxxflags>-Wno-deprecated-declarations 4 6 <toolset>gcc:<cxxflags>-Wno-long-long 5 7 <toolset>gcc:<cxxflags>-ftrack-macro-expansion=0 # Suppress note: in expansion of macro 8 }}} 9 6 10 7 11 and they are repeated on every compilation which is quite annoying when reading the log file. … … 10 14 11 15 16 17 {{{ 12 18 gcc.compile.c++ ..\..\..\bin.v2\libs\timer\build\gcc-mingw-5.1.0\debug\link-static\auto_timers_construction.o 13 19 In file included from C:/Program Files/mingw-w64/x86_64-5.1.0-win32-seh-rt_v4-rev0/mingw64/lib/gcc/x86_64-w64-mingw32/5.1.0/include/stdint.h:9:0, … … 26 32 ..\..\../boost/chrono/system_clocks.hpp:77:90: note: in expansion of macro 'BOOST_RATIO_INTMAX_C' 27 33 # define BOOST_SYSTEM_CLOCK_DURATION boost::chrono::duration<boost::int_least64_t, ratio<BOOST_RATIO_INTMAX_C(1), BOOST_RATIO_INTMAX_C(10000000)> > 34 }}} 35 28 36 29 37 and more...