Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:38:14

0001 /*=============================================================================
0002     Copyright (c) 2014 Paul Fultz II
0003     holder.h
0004     Distributed under the Boost Software License, Version 1.0. (See accompanying
0005     file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 ==============================================================================*/
0007 
0008 #ifndef BOOST_HOF_GUARD_HOLDER_H
0009 #define BOOST_HOF_GUARD_HOLDER_H
0010 
0011 namespace boost { namespace hof { namespace detail {
0012 
0013 template<class... Ts>
0014 struct holder
0015 {
0016     typedef void type;
0017 };
0018 
0019 template<template<class...> class T>
0020 struct template_holder
0021 {
0022     typedef void type;
0023 };
0024 
0025 }}} // namespace boost::hof
0026 
0027 #endif