[/ Copyright 2019 Glen Joseph Fernandes (glenjofe@gmail.com) Distributed under the Boost Software License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt) ] [section:use_default use_default] [section Overview] The header provides the type `boost::use_default` which is used by other Boost libraries as a sentinel type in a templates to indicate defaults. [endsect] [section Example] ``` template class iterator_adaptor; template class node_iterator : public iterator_adaptor, Value*, boost::use_default, boost::forward_traversal_tag>; ``` [endsect] [section Reference] ``` namespace boost { struct use_default { }; } ``` [endsect] [endsect]