main.cpp 401 Bytes
Newer Older
1
// Headers are available because we added the pls target
2 3 4 5
#include <iostream>
#include <functional>
#include <array>
#include <atomic>
6
#include <memory>
7 8
#include <typeindex>
#include <tuple>
9

10
#include <pls/pls.h>
11

12
int main() {
13 14 15
  auto range = boost::irange(0, 10);
  bool test = std::is_integral<typename std::remove_reference<decltype(range.begin())>::type>::value;
  std::cout << test << std::endl;
16
}