1 /*============================================================================= 2 Copyright (c) 2017 Paul Fultz II 3 apply_eval.cpp 4 Distributed under the Boost Software License, Version 1.0. (See accompanying 5 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 ==============================================================================*/ 7 #include <boost/hof/apply_eval.hpp> 8 main()9int main() { 10 (void)boost::hof::apply_eval(boost::hof::always(), 1, 2); 11 } 12