1 ///////////////////////////////////////////////////////////////////////////////
2 /// \file dont_care.hpp
3 /// Definintion of dont_care, a dummy parameter
4 //
5 //  Copyright 2008 Eric Niebler. Distributed under the Boost
6 //  Software License, Version 1.0. (See accompanying file
7 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8 
9 #ifndef BOOST_PROTO_DETAIL_DONT_CARE_HPP_EAN_11_07_2007
10 #define BOOST_PROTO_DETAIL_DONT_CARE_HPP_EAN_11_07_2007
11 
12 namespace boost { namespace proto
13 {
14     namespace detail
15     {
16         struct dont_care
17         {
18             dont_care(...);
19         };
20     }
21 }}
22 
23 #endif
24