Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/signals2/detail/lwm_nop.hpp @ 118:770eb830ec19 emscripten
Typo fix
| author | Chris Cannam |
|---|---|
| date | Wed, 18 May 2016 16:14:08 +0100 |
| parents | c530137014c0 |
| children |
| rev | line source |
|---|---|
| Chris@16 | 1 // |
| Chris@16 | 2 // boost/signals2/detail/lwm_nop.hpp |
| Chris@16 | 3 // |
| Chris@16 | 4 // Copyright (c) 2002 Peter Dimov and Multi Media Ltd. |
| Chris@16 | 5 // Copyright (c) 2008 Frank Mori Hess |
| Chris@16 | 6 // |
| Chris@16 | 7 // Distributed under the Boost Software License, Version 1.0. (See |
| Chris@16 | 8 // accompanying file LICENSE_1_0.txt or copy at |
| Chris@16 | 9 // http://www.boost.org/LICENSE_1_0.txt) |
| Chris@16 | 10 // |
| Chris@16 | 11 |
| Chris@16 | 12 #ifndef BOOST_SIGNALS2_LWM_NOP_HPP |
| Chris@16 | 13 #define BOOST_SIGNALS2_LWM_NOP_HPP |
| Chris@16 | 14 |
| Chris@16 | 15 // MS compatible compilers support #pragma once |
| Chris@16 | 16 |
| Chris@101 | 17 #if defined(_MSC_VER) |
| Chris@16 | 18 # pragma once |
| Chris@16 | 19 #endif |
| Chris@16 | 20 |
| Chris@16 | 21 |
| Chris@16 | 22 #include <boost/signals2/dummy_mutex.hpp> |
| Chris@16 | 23 |
| Chris@16 | 24 namespace boost |
| Chris@16 | 25 { |
| Chris@16 | 26 |
| Chris@16 | 27 namespace signals2 |
| Chris@16 | 28 { |
| Chris@16 | 29 |
| Chris@16 | 30 class mutex: public dummy_mutex |
| Chris@16 | 31 { |
| Chris@16 | 32 }; |
| Chris@16 | 33 |
| Chris@16 | 34 } // namespace signals2 |
| Chris@16 | 35 |
| Chris@16 | 36 } // namespace boost |
| Chris@16 | 37 |
| Chris@16 | 38 #endif // #ifndef BOOST_SIGNALS2_LWM_NOP_HPP |
