From b7332b04df5d50c92640c74cfeb138ecb7e3f7ae Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Tue, 20 Aug 2019 18:01:01 +0000 Subject: Remove upstream files and directories from vendor/libc++/dist that we do not use. This saves on repository space, and reduces the number of tree conflicts when merging. --- .../string.modifiers/insert_iter_char_db1.pass.cpp | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 test/libcxx/strings/basic.string/string.modifiers/insert_iter_char_db1.pass.cpp (limited to 'test/libcxx/strings/basic.string/string.modifiers/insert_iter_char_db1.pass.cpp') diff --git a/test/libcxx/strings/basic.string/string.modifiers/insert_iter_char_db1.pass.cpp b/test/libcxx/strings/basic.string/string.modifiers/insert_iter_char_db1.pass.cpp deleted file mode 100644 index fbb26d178997..000000000000 --- a/test/libcxx/strings/basic.string/string.modifiers/insert_iter_char_db1.pass.cpp +++ /dev/null @@ -1,34 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -// - -// iterator insert(const_iterator p, charT c); - -#if _LIBCPP_DEBUG >= 1 -#define _LIBCPP_ASSERT(x, m) ((x) ? (void)0 : std::exit(0)) -#endif - -#include -#include -#include - - -int main() -{ -#if _LIBCPP_DEBUG >= 1 - { - typedef std::string S; - S s; - S s2; - s.insert(s2.begin(), '1'); - assert(false); - } -#endif -} -- cgit v1.3