Removed debug code in window sample

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1120 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
laurentgom 2009-06-01 13:42:52 +00:00
parent f624f16350
commit 5461ddcb52

View File

@ -1,37 +1,3 @@
/*
#include <SFML/Window.hpp>
void f(void*)
{
sf::Context context;
}
int main()
{
{
sf::Thread t(&f);
t.Launch();
}
{
sf::Window window(sf::VideoMode(640, 480), "Test");
{
sf::Thread t(&f);
t.Launch();
}
}
{
sf::Thread t(&f);
t.Launch();
}
return 0;
}
*/
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
// Headers // Headers
@ -150,4 +116,3 @@ int main()
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }