tools/scratch: remove inadvertantly committed code

scratch should always be a noop. It's only here to simplify testing of
new code.
This commit is contained in:
Danny Robson 2016-03-15 12:28:14 +11:00
parent 5b91320a95
commit 8ea827aab0

View File

@ -1,21 +1,8 @@
#include <cstdlib>
#include <iostream>
#include "coord/iostream.hpp"
#include "extent.hpp"
#include "region.hpp"
int int
main (int argc, char **argv) main (int argc, char **argv)
{ {
(void)argc; (void)argc;
(void)argv; (void)argv;
util::point2u a { 0, 0 };
util::point2u b { 1, 1 };
util::region2u v { a, b };
std::cerr << v << '\n';
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }