From d6837709cf10da5ea9718f8270fb0624cc103de8 Mon Sep 17 00:00:00 2001 From: "kjellander@webrtc.org" Date: Tue, 1 Nov 2011 01:51:10 +0000 Subject: [PATCH] Fixing VPMUnitTest compilation error on Windows. It tried to include Visual Leak Detector which is not a tool that is installed/configured by default in the build. Review URL: http://webrtc-codereview.appspot.com/257002 git-svn-id: http://webrtc.googlecode.com/svn/trunk@854 4adac7df-926f-26a2-2b94-8c16560cd09d --- .../video_processing/main/test/unit_test/unit_test.cc | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/modules/video_processing/main/test/unit_test/unit_test.cc b/src/modules/video_processing/main/test/unit_test/unit_test.cc index e7ba5f52d..107dacc75 100644 --- a/src/modules/video_processing/main/test/unit_test/unit_test.cc +++ b/src/modules/video_processing/main/test/unit_test/unit_test.cc @@ -12,15 +12,7 @@ #include "trace.h" #include "tick_util.h" -#ifdef WIN32 -#include // Visual Leak Detector -#endif - -#ifdef WIN32 -#pragma message("Using Google C++ Testing Framework") -#endif - -using namespace webrtc; +using webrtc::Trace; void TestSize(VideoFrame& sourceFrame, WebRtc_UWord32 targetWidth, WebRtc_UWord32 targetHeight, WebRtc_UWord32 mode, VideoProcessingModule *vpm);