summaryrefslogtreecommitdiffhomepage
path: root/examples/option_example/example.cc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/option_example/example.cc')
-rw-r--r--examples/option_example/example.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/option_example/example.cc b/examples/option_example/example.cc
deleted file mode 100644
index 0da9d49..0000000
--- a/examples/option_example/example.cc
+++ /dev/null
@@ -1,14 +0,0 @@
-#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");
-
- ocl::option opt2{ocl::eval_eq(argv, nullptr)};
- opt2.expect("is incorrect");
-
- return 0;
-}