summaryrefslogtreecommitdiffhomepage
path: root/examples/simple_allocator_op/example.cc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/simple_allocator_op/example.cc')
-rw-r--r--examples/simple_allocator_op/example.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/simple_allocator_op/example.cc b/examples/simple_allocator_op/example.cc
deleted file mode 100644
index 83be033..0000000
--- a/examples/simple_allocator_op/example.cc
+++ /dev/null
@@ -1,14 +0,0 @@
-#include <ocl/print.hpp>
-#include <ocl/allocator_op.hpp>
-
-/// @brief Basic Send test
-int main()
-{
- ocl::allocator<int> int_alloc;
- auto foo = int_alloc.construct_array<1>();
-
- *foo = 67;
- ocl::io::print(*foo);
-
- return EXIT_SUCCESS;
-}