diff options
30 files changed, 269 insertions, 0 deletions
diff --git a/libcxx/include/support/solaris/floatingpoint.h b/libcxx/include/support/solaris/floatingpoint.h index 21b0349aa59..999d144b1f2 100644 --- a/libcxx/include/support/solaris/floatingpoint.h +++ b/libcxx/include/support/solaris/floatingpoint.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #define atof sun_atof #define strtod sun_strtod #include_next "floatingpoint.h" diff --git a/libcxx/include/support/solaris/wchar.h b/libcxx/include/support/solaris/wchar.h index 05a7241789d..0e8e660c8bd 100644 --- a/libcxx/include/support/solaris/wchar.h +++ b/libcxx/include/support/solaris/wchar.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #define iswalpha sun_iswalpha #define iswupper sun_iswupper #define iswlower sun_iswlower diff --git a/libcxx/include/support/solaris/xlocale.h b/libcxx/include/support/solaris/xlocale.h index 359508d9f8f..875a39add76 100644 --- a/libcxx/include/support/solaris/xlocale.h +++ b/libcxx/include/support/solaris/xlocale.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + //////////////////////////////////////////////////////////////////////////////// // Minimal xlocale implementation for Solaris. This implements the subset of // the xlocale APIs that libc++ depends on. diff --git a/libcxx/src/support/solaris/xlocale.c b/libcxx/src/support/solaris/xlocale.c index a2c1fa905cc..39dd8e36835 100644 --- a/libcxx/src/support/solaris/xlocale.c +++ b/libcxx/src/support/solaris/xlocale.c @@ -1,3 +1,11 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// #ifdef __sun__ diff --git a/libcxx/test/containers/Copyable.h b/libcxx/test/containers/Copyable.h index 121cef618a6..9542c7e8516 100644 --- a/libcxx/test/containers/Copyable.h +++ b/libcxx/test/containers/Copyable.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef COPYABLE_H #define COPYABLE_H diff --git a/libcxx/test/containers/Emplaceable.h b/libcxx/test/containers/Emplaceable.h index aab290a3160..34dd326203b 100644 --- a/libcxx/test/containers/Emplaceable.h +++ b/libcxx/test/containers/Emplaceable.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef EMPLACEABLE_H #define EMPLACEABLE_H diff --git a/libcxx/test/containers/MoveOnly.h b/libcxx/test/containers/MoveOnly.h index cbf80201abb..e4d9f649560 100644 --- a/libcxx/test/containers/MoveOnly.h +++ b/libcxx/test/containers/MoveOnly.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef MOVEONLY_H #define MOVEONLY_H diff --git a/libcxx/test/containers/NotConstructible.h b/libcxx/test/containers/NotConstructible.h index 57050035124..ac8b98ef99f 100644 --- a/libcxx/test/containers/NotConstructible.h +++ b/libcxx/test/containers/NotConstructible.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef NOTCONSTRUCTIBLE_H #define NOTCONSTRUCTIBLE_H diff --git a/libcxx/test/containers/stack_allocator.h b/libcxx/test/containers/stack_allocator.h index e6af473816a..d5fab025c9d 100644 --- a/libcxx/test/containers/stack_allocator.h +++ b/libcxx/test/containers/stack_allocator.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef STACK_ALLOCATOR_H #define STACK_ALLOCATOR_H diff --git a/libcxx/test/containers/test_compare.h b/libcxx/test/containers/test_compare.h index ba562868b37..9c54799172e 100644 --- a/libcxx/test/containers/test_compare.h +++ b/libcxx/test/containers/test_compare.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef TEST_COMPARE_H #define TEST_COMPARE_H diff --git a/libcxx/test/containers/test_hash.h b/libcxx/test/containers/test_hash.h index 95f6e9eb195..1a70e7cbdd9 100644 --- a/libcxx/test/containers/test_hash.h +++ b/libcxx/test/containers/test_hash.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef TEST_HASH_H #define TEST_HASH_H diff --git a/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/test_min_max.pass.cpp b/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/test_min_max.pass.cpp index c60ecc52536..e474eca2f5b 100644 --- a/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/test_min_max.pass.cpp +++ b/libcxx/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/test_min_max.pass.cpp @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #include <limits> #include <sstream> #include <iostream> diff --git a/libcxx/test/strings/basic.string/input_iterator.h b/libcxx/test/strings/basic.string/input_iterator.h index 37939a2e29a..fa6bb80a149 100644 --- a/libcxx/test/strings/basic.string/input_iterator.h +++ b/libcxx/test/strings/basic.string/input_iterator.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef INPUT_ITERATOR_H #define INPUT_ITERATOR_H diff --git a/libcxx/test/strings/basic.string/test_traits.h b/libcxx/test/strings/basic.string/test_traits.h index 45268f7215b..f635b1d7516 100644 --- a/libcxx/test/strings/basic.string/test_traits.h +++ b/libcxx/test/strings/basic.string/test_traits.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef TEST_TRAITS_H #define TEST_TRAITS_H diff --git a/libcxx/test/support/DefaultOnly.h b/libcxx/test/support/DefaultOnly.h index bdcf46d19ff..a3d4303f815 100644 --- a/libcxx/test/support/DefaultOnly.h +++ b/libcxx/test/support/DefaultOnly.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef DEFAULTONLY_H #define DEFAULTONLY_H diff --git a/libcxx/test/support/allocators.h b/libcxx/test/support/allocators.h index e5e0a137581..5372c073054 100644 --- a/libcxx/test/support/allocators.h +++ b/libcxx/test/support/allocators.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef ALLOCATORS_H #define ALLOCATORS_H diff --git a/libcxx/test/support/min_allocator.h b/libcxx/test/support/min_allocator.h index c0d28e5faa2..f3f08caa556 100644 --- a/libcxx/test/support/min_allocator.h +++ b/libcxx/test/support/min_allocator.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef MIN_ALLOCATOR_H #define MIN_ALLOCATOR_H diff --git a/libcxx/test/support/private_constructor.hpp b/libcxx/test/support/private_constructor.hpp index 3f6f0d3d0ed..a9fcf689723 100644 --- a/libcxx/test/support/private_constructor.hpp +++ b/libcxx/test/support/private_constructor.hpp @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef __PRIVATE_CONSTRUCTOR__H #define __PRIVATE_CONSTRUCTOR__H diff --git a/libcxx/test/support/test_allocator.h b/libcxx/test/support/test_allocator.h index 3ec7f478801..99f72a053c3 100644 --- a/libcxx/test/support/test_allocator.h +++ b/libcxx/test/support/test_allocator.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef TEST_ALLOCATOR_H #define TEST_ALLOCATOR_H diff --git a/libcxx/test/support/test_iterators.h b/libcxx/test/support/test_iterators.h index 81f064d0c2d..5bd6df7e2f1 100644 --- a/libcxx/test/support/test_iterators.h +++ b/libcxx/test/support/test_iterators.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef ITERATORS_H #define ITERATORS_H diff --git a/libcxx/test/thread/futures/test_allocator.h b/libcxx/test/thread/futures/test_allocator.h index e04d4320619..ea70ada63e7 100644 --- a/libcxx/test/thread/futures/test_allocator.h +++ b/libcxx/test/thread/futures/test_allocator.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef TEST_ALLOCATOR_H #define TEST_ALLOCATOR_H diff --git a/libcxx/test/utilities/function.objects/arithmetic.operations/transparent.pass.cpp b/libcxx/test/utilities/function.objects/arithmetic.operations/transparent.pass.cpp index 43e2e2120b2..72b4b4a0a1f 100644 --- a/libcxx/test/utilities/function.objects/arithmetic.operations/transparent.pass.cpp +++ b/libcxx/test/utilities/function.objects/arithmetic.operations/transparent.pass.cpp @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #include <functional> #include <string> diff --git a/libcxx/test/utilities/function.objects/bitwise.operations/transparent.pass.cpp b/libcxx/test/utilities/function.objects/bitwise.operations/transparent.pass.cpp index 91d263ed03f..9f8e15dd55f 100644 --- a/libcxx/test/utilities/function.objects/bitwise.operations/transparent.pass.cpp +++ b/libcxx/test/utilities/function.objects/bitwise.operations/transparent.pass.cpp @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #include <functional> #include <string> diff --git a/libcxx/test/utilities/function.objects/comparisons/transparent.pass.cpp b/libcxx/test/utilities/function.objects/comparisons/transparent.pass.cpp index 516b3644d71..41ce4bcae65 100644 --- a/libcxx/test/utilities/function.objects/comparisons/transparent.pass.cpp +++ b/libcxx/test/utilities/function.objects/comparisons/transparent.pass.cpp @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #include <functional> #include <string> diff --git a/libcxx/test/utilities/function.objects/logical.operations/transparent.pass.cpp b/libcxx/test/utilities/function.objects/logical.operations/transparent.pass.cpp index 5b3e1877c21..6e3b7a2eee2 100644 --- a/libcxx/test/utilities/function.objects/logical.operations/transparent.pass.cpp +++ b/libcxx/test/utilities/function.objects/logical.operations/transparent.pass.cpp @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #include <functional> #include <string> diff --git a/libcxx/test/utilities/time/clock.h b/libcxx/test/utilities/time/clock.h index ec99f26dd3f..c72470c9cc8 100644 --- a/libcxx/test/utilities/time/clock.h +++ b/libcxx/test/utilities/time/clock.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef CLOCK_H #define CLOCK_H diff --git a/libcxx/test/utilities/time/rep.h b/libcxx/test/utilities/time/rep.h index 59c58bbb7e1..2ec3514ab56 100644 --- a/libcxx/test/utilities/time/rep.h +++ b/libcxx/test/utilities/time/rep.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef REP_H #define REP_H diff --git a/libcxx/test/utilities/tuple/tuple.tuple/MoveOnly.h b/libcxx/test/utilities/tuple/tuple.tuple/MoveOnly.h index cbf80201abb..e4d9f649560 100644 --- a/libcxx/test/utilities/tuple/tuple.tuple/MoveOnly.h +++ b/libcxx/test/utilities/tuple/tuple.tuple/MoveOnly.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef MOVEONLY_H #define MOVEONLY_H diff --git a/libcxx/test/utilities/tuple/tuple.tuple/alloc_first.h b/libcxx/test/utilities/tuple/tuple.tuple/alloc_first.h index 948f2a49976..237a2897e87 100644 --- a/libcxx/test/utilities/tuple/tuple.tuple/alloc_first.h +++ b/libcxx/test/utilities/tuple/tuple.tuple/alloc_first.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef ALLOC_FIRST_H #define ALLOC_FIRST_H diff --git a/libcxx/test/utilities/tuple/tuple.tuple/alloc_last.h b/libcxx/test/utilities/tuple/tuple.tuple/alloc_last.h index e87cb2118bc..71a9b9e97ac 100644 --- a/libcxx/test/utilities/tuple/tuple.tuple/alloc_last.h +++ b/libcxx/test/utilities/tuple/tuple.tuple/alloc_last.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + #ifndef ALLOC_LAST_H #define ALLOC_LAST_H |