summaryrefslogtreecommitdiff
path: root/inference-engine/thirdparty/clDNN/common/boost/1.64.0/include/boost-1_64/boost/fusion/sequence/io/in.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inference-engine/thirdparty/clDNN/common/boost/1.64.0/include/boost-1_64/boost/fusion/sequence/io/in.hpp')
-rw-r--r--inference-engine/thirdparty/clDNN/common/boost/1.64.0/include/boost-1_64/boost/fusion/sequence/io/in.hpp43
1 files changed, 0 insertions, 43 deletions
diff --git a/inference-engine/thirdparty/clDNN/common/boost/1.64.0/include/boost-1_64/boost/fusion/sequence/io/in.hpp b/inference-engine/thirdparty/clDNN/common/boost/1.64.0/include/boost-1_64/boost/fusion/sequence/io/in.hpp
deleted file mode 100644
index 288c24733..000000000
--- a/inference-engine/thirdparty/clDNN/common/boost/1.64.0/include/boost-1_64/boost/fusion/sequence/io/in.hpp
+++ /dev/null
@@ -1,43 +0,0 @@
-/*=============================================================================
- Copyright (c) 1999-2003 Jaakko Jarvi
- Copyright (c) 1999-2003 Jeremiah Willcock
- Copyright (c) 2001-2011 Joel de Guzman
-
- 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)
-==============================================================================*/
-#if !defined(BOOST_IN_05042005_0120)
-#define BOOST_IN_05042005_0120
-
-#include <boost/fusion/support/config.hpp>
-#include <istream>
-#include <boost/fusion/sequence/io/detail/in.hpp>
-#include <boost/fusion/support/is_sequence.hpp>
-
-namespace boost { namespace fusion
-{
- template <typename Sequence>
- inline std::istream&
- in(std::istream& is, Sequence& seq)
- {
- detail::read_sequence(is, seq);
- return is;
- }
-
- namespace operators
- {
- template <typename Sequence>
- inline typename
- boost::enable_if<
- fusion::traits::is_sequence<Sequence>
- , std::istream&
- >::type
- operator>>(std::istream& is, Sequence& seq)
- {
- return fusion::in(is, seq);
- }
- }
- using operators::operator>>;
-}}
-
-#endif