Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/none_t.hpp @ 125:34e428693f5d vext
Vext -> Repoint
author | Chris Cannam |
---|---|
date | Thu, 14 Jun 2018 11:15:39 +0100 |
parents | c530137014c0 |
children |
rev | line source |
---|---|
Chris@16 | 1 // Copyright (C) 2003, Fernando Luis Cacciola Carballal. |
Chris@101 | 2 // Copyright (C) 2014 Andrzej Krzemienski. |
Chris@16 | 3 // |
Chris@16 | 4 // Use, modification, and distribution is subject to the Boost Software |
Chris@16 | 5 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
Chris@16 | 6 // http://www.boost.org/LICENSE_1_0.txt) |
Chris@16 | 7 // |
Chris@16 | 8 // See http://www.boost.org/libs/optional for documentation. |
Chris@16 | 9 // |
Chris@16 | 10 // You are welcome to contact the author at: |
Chris@16 | 11 // fernando_cacciola@hotmail.com |
Chris@16 | 12 // |
Chris@16 | 13 #ifndef BOOST_NONE_T_17SEP2003_HPP |
Chris@16 | 14 #define BOOST_NONE_T_17SEP2003_HPP |
Chris@16 | 15 |
Chris@16 | 16 namespace boost { |
Chris@16 | 17 |
Chris@101 | 18 #ifdef BOOST_OPTIONAL_USE_OLD_DEFINITION_OF_NONE |
Chris@16 | 19 namespace detail { struct none_helper{}; } |
Chris@16 | 20 typedef int detail::none_helper::*none_t ; |
Chris@101 | 21 #else |
Chris@101 | 22 class none_t {}; |
Chris@101 | 23 #endif |
Chris@16 | 24 |
Chris@16 | 25 } // namespace boost |
Chris@16 | 26 |
Chris@16 | 27 #endif |
Chris@16 | 28 |