
MSVC++ compiler Version 8.0 log_manager.cpp i:\boost_root\boost/log/log.hpp(168) : warning C4512: 'boost::logging::logger_and_level' : assignment operator could not be generated i:\boost_root\boost/log/log.hpp(164) : see declaration of 'boost::logging::logger_and_level'
i:\boost_root\libs\log\src\log_manager.cpp(83) : warning C4100: 'lvl' : unreferenced formal parameter
You may wish so suppress these for MSVC? I presume they are spurious warnings?
# pragma warning(disable: 4512) // assignment operator could not be generated. # pragma warning(disable: 4100) // unreferenced formal parameter.
Yup, you're right. Updating right now. Best, John -- John Torjo, Contributing editor, C/C++ Users Journal -- "Win32 GUI Generics" -- generics & GUI do mix, after all -- http://www.torjo.com/win32gui/surfaces.html - Sky's the limit! -- http://www.torjo.com/cb/ - Click, Build, Run!