src/relpipe-out-chart.cpp
author František Kučera <franta-hg@frantovo.cz>
Mon, 24 Sep 2018 13:47:02 +0200
branchv_0
changeset 1 0e791c64f38b
parent 0 ba16fce7ef20
child 2 7ba3ae8cf1fc
permissions -rw-r--r--
add ASan AddressSanitizer to detect memory leaks

#include <iostream>

int main(int argc, char**argv) {
	std::cout << "TODO: relpipe-out-chart..." << std::endl;
	// char * x = new char[1000]; // simulate a memory leak and test that ASan is working
	return 0;
}