blob: ef1a8651e5f62cb1730a38a324f3c8516713fbd3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <ocl/crc_hash.hpp>
#include <ocl/print.hpp>
#include <ocl/smart_ptr.hpp>
int main(int argc, char** argv)
{
ocl::shared_ptr<std::ostream> smart = ocl::delete_ptr(&std::cout);
return 0;
}
|