Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-01-08 10:04:57

0001 #ifndef BOOST_QVM_DETAIL_REMOVE_CONST_HPP_INCLUDED
0002 #define BOOST_QVM_DETAIL_REMOVE_CONST_HPP_INCLUDED
0003 
0004 // Copyright 2008-2024 Emil Dotchevski and Reverge Studios, Inc.
0005 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0006 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0007 
0008 namespace boost { namespace qvm {
0009 
0010 namespace
0011 qvm_detail
0012     {
0013     template <class T>
0014     struct
0015     remove_const
0016         {
0017         typedef T type;
0018         };
0019 
0020     template <class T>
0021     struct
0022     remove_const<T const>
0023         {
0024         typedef T type;
0025         };
0026     }
0027 
0028 } }
0029 
0030 #endif