|
||||
File indexing completed on 2025-01-18 09:28:26
0001 /* 0002 Copyright 2019 Glen Joseph Fernandes 0003 (glenjofe@gmail.com) 0004 0005 Distributed under the Boost Software License, Version 1.0. 0006 (http://www.boost.org/LICENSE_1_0.txt) 0007 */ 0008 #ifndef BOOST_ALIGN_DETAIL_NOT_POINTER_HPP 0009 #define BOOST_ALIGN_DETAIL_NOT_POINTER_HPP 0010 0011 namespace boost { 0012 namespace alignment { 0013 namespace detail { 0014 0015 template<class T, class U> 0016 struct not_pointer { 0017 typedef U type; 0018 }; 0019 0020 template<class T, class U> 0021 struct not_pointer<T*, U> { }; 0022 0023 } /* detail */ 0024 } /* alignment */ 0025 } /* boost */ 0026 0027 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |