From 0f11aa37e2ead8af668dedc483b7ea804982b78c Mon Sep 17 00:00:00 2001 From: Ged Murphy Date: Fri, 4 Dec 2009 15:22:13 +0000 Subject: [PATCH] Remove perf test code I accidentally committed svn path=/trunk/; revision=44404 --- reactos/tools/rbuild/rbuild.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/reactos/tools/rbuild/rbuild.cpp b/reactos/tools/rbuild/rbuild.cpp index 6381c7a72c2..1119f22ca0f 100644 --- a/reactos/tools/rbuild/rbuild.cpp +++ b/reactos/tools/rbuild/rbuild.cpp @@ -388,8 +388,6 @@ main ( int argc, char** argv ) if ( RootXmlFile.length () == 0 ) throw MissingArgumentException ( "-r" ); - DWORD start = GetTickCount(); - string projectFilename ( RootXmlFile ); printf ( "Reading build files..." ); @@ -404,9 +402,6 @@ main ( int argc, char** argv ) project.ExecuteInvocations (); project.GetBackend().Process(); - DWORD end = GetTickCount(); - printf("time - %lu.%d\n", (end - start) / 1000, (end - start) % 1000); - return 0; } catch ( Exception& ex )