Linux compilation : remove(filename) instead of std::remove(filename)

This commit is contained in:
Sébastien Rombauts 2012-04-04 14:13:27 +02:00
parent dce8466f1e
commit 3ef58a7e0c

View File

@ -11,6 +11,7 @@
*/
#include <iostream>
#include "stdio.h"
#include "../SQLiteC++/Database.h"
#include "../SQLiteC++/Statement.h"
@ -135,8 +136,7 @@ int main (void)
{
std::cout << "SQLite exception: " << e.what() << std::endl;
}
std::remove("test.db3");
remove("test.db3");
return 0;
}