Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/icl/detail/relation_state.hpp @ 133:4acb5d8d80b6 tip
Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
| author | Chris Cannam |
|---|---|
| date | Tue, 30 Jul 2019 12:25:44 +0100 |
| parents | 2665513ce2d3 |
| children |
| rev | line source |
|---|---|
| Chris@16 | 1 /*-----------------------------------------------------------------------------+ |
| Chris@16 | 2 Author: Joachim Faulhaber |
| Chris@16 | 3 Copyright (c) 2009-2009: Joachim Faulhaber |
| Chris@16 | 4 +------------------------------------------------------------------------------+ |
| Chris@16 | 5 Distributed under the Boost Software License, Version 1.0. |
| Chris@16 | 6 (See accompanying file LICENCE.txt or copy at |
| Chris@16 | 7 http://www.boost.org/LICENSE_1_0.txt) |
| Chris@16 | 8 +-----------------------------------------------------------------------------*/ |
| Chris@16 | 9 /*-----------------------------------------------------------------------------+ |
| Chris@16 | 10 States of comparison and inclusion relations as static constants |
| Chris@16 | 11 +-----------------------------------------------------------------------------*/ |
| Chris@16 | 12 #ifndef BOOST_ICL_RELATION_STATE_HPP_JOFA_090214 |
| Chris@16 | 13 #define BOOST_ICL_RELATION_STATE_HPP_JOFA_090214 |
| Chris@16 | 14 |
| Chris@16 | 15 namespace boost{namespace icl |
| Chris@16 | 16 { |
| Chris@16 | 17 namespace comparison |
| Chris@16 | 18 { |
| Chris@16 | 19 static const int less = -1; |
| Chris@16 | 20 static const int equal = 0; |
| Chris@16 | 21 static const int greater = 1; |
| Chris@16 | 22 } |
| Chris@16 | 23 |
| Chris@16 | 24 namespace inclusion |
| Chris@16 | 25 { |
| Chris@16 | 26 static const int unrelated = 0; |
| Chris@16 | 27 static const int subset = 1; |
| Chris@16 | 28 static const int superset = 2; |
| Chris@16 | 29 static const int equal = 3; |
| Chris@16 | 30 } |
| Chris@16 | 31 |
| Chris@16 | 32 |
| Chris@16 | 33 }} // namespace icl boost |
| Chris@16 | 34 |
| Chris@16 | 35 #endif // BOOST_ICL_RELATION_STATE_HPP_JOFA_090214 |
| Chris@16 | 36 |
| Chris@16 | 37 |
