summaryrefslogtreecommitdiffhomepage
path: root/examples/option_example/example.cc
blob: 7649438be6b89558532adb215b8211fab3f8bfdf (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <ocl/crc_hash.hpp>
#include <ocl/print.hpp>
#include <ocl/option.hpp>

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

	return 0;
}