Update of /cvsroot/boost/boost/boost/thread In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv1439
Modified Files: tss.hpp Log Message: Merged changes from RC_1_34_0 Index: tss.hpp =================================================================== RCS file: /cvsroot/boost/boost/boost/thread/tss.hpp,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- tss.hpp 29 Sep 2006 19:24:19 -0000 1.15 +++ tss.hpp 15 Oct 2006 10:27:28 -0000 1.16 @@ -1,5 +1,5 @@ -// Copyright (C) 2001-2003 -// William E. Kempf +// Copyright (C) 2001-2003 William E. Kempf +// Copyright (C) 2006 Roland Schwarz // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) @@ -21,6 +21,13 @@ namespace boost { +// disable warnings about non dll import +// see: http://www.boost.org/more/separate_compilation.html#dlls +#ifdef BOOST_MSVC +# pragma warning(push) +# pragma warning(disable: 4251 4231 4660 4275) +#endif + namespace detail { class BOOST_THREAD_DECL tss : private noncopyable @@ -38,7 +45,6 @@ throw boost::thread_resource_error(); } } - ~tss(); void* get() const; void set(void* value); @@ -99,6 +105,10 @@ detail::tss m_tss; }; +#ifdef BOOST_MSVC +# pragma warning(pop) +#endif + } // namespace boost #endif //BOOST_TSS_WEK070601_HPP ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Boost-cvs mailing list Boost-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/boost-cvs