summaryrefslogtreecommitdiffhomepage
path: root/example/option_example/example.cc
blob: e35f73bc5f15911ffd5a13280ef75e35e60c5b4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <ocl/crc_hash.hpp>
#include <ocl/print.hpp>
#include <ocl/option.hpp>
// #include <ocl/is_same.hpp>

int main(int argc, char** argv)
{
    ocl::option opt{ocl::eval_eq(nullptr, nullptr)};
    opt.expect("is incorrect");

    ocl::option opt2{ocl::eval_eq(argv, nullptr)};
    opt2.expect("is incorrect");

	return 0;
}