From: Eli Friedman Date: Thu, 15 Sep 2011 23:24:35 +0000 (+0000) Subject: Remove standard library includes from test; they explode on Windows. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e5326fa87a5431830cd0df296ad5de1eedf63c59;p=clang Remove standard library includes from test; they explode on Windows. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139875 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/SemaCXX/warn-thread-safety-analysis.cpp b/test/SemaCXX/warn-thread-safety-analysis.cpp index 50ec0d196d..90a8933150 100644 --- a/test/SemaCXX/warn-thread-safety-analysis.cpp +++ b/test/SemaCXX/warn-thread-safety-analysis.cpp @@ -1,8 +1,5 @@ // RUN: %clang_cc1 -fsyntax-only -verify -Wthread-safety %s -#include // for test 50 -#include // for test 58 - #define LOCKABLE __attribute__ ((lockable)) #define SCOPED_LOCKABLE __attribute__ ((scoped_lockable)) #define GUARDED_BY(x) __attribute__ ((guarded_by(x)))