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; }