From 5461ddcb5229ee7d8a9710ccbb6160742484350d Mon Sep 17 00:00:00 2001 From: laurentgom Date: Mon, 1 Jun 2009 13:42:52 +0000 Subject: [PATCH] Removed debug code in window sample git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1120 4e206d99-4929-0410-ac5d-dfc041789085 --- samples/window/Window.cpp | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/samples/window/Window.cpp b/samples/window/Window.cpp index ca469a4d6..a2860e64a 100644 --- a/samples/window/Window.cpp +++ b/samples/window/Window.cpp @@ -1,37 +1,3 @@ -/* -#include - -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 @@ -150,4 +116,3 @@ int main() return EXIT_SUCCESS; } -