apply_eval.cpp 486 B

1234567891011
  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. int main() {
  9. (void)boost::hof::apply_eval(boost::hof::always(), 1, 2);
  10. }