[libcxx] r199400 - Add license headers to a bunch of libc++ files that were missing them. No functionality change. Fixes 18291. Thanks to Nico for the bug report and the patch.

Marshall Clow mclow.lists at gmail.com
Thu Jan 16 08:58:46 PST 2014


Author: marshall
Date: Thu Jan 16 10:58:45 2014
New Revision: 199400

URL: http://llvm.org/viewvc/llvm-project?rev=199400&view=rev
Log:
Add license headers to a bunch of libc++ files that were missing them. No functionality change. Fixes 18291. Thanks to Nico for the bug report and the patch.

Modified:
    libcxx/trunk/include/support/solaris/floatingpoint.h
    libcxx/trunk/include/support/solaris/wchar.h
    libcxx/trunk/include/support/solaris/xlocale.h
    libcxx/trunk/src/support/solaris/xlocale.c
    libcxx/trunk/test/containers/Copyable.h
    libcxx/trunk/test/containers/Emplaceable.h
    libcxx/trunk/test/containers/MoveOnly.h
    libcxx/trunk/test/containers/NotConstructible.h
    libcxx/trunk/test/containers/stack_allocator.h
    libcxx/trunk/test/containers/test_compare.h
    libcxx/trunk/test/containers/test_hash.h
    libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/test_min_max.pass.cpp
    libcxx/trunk/test/strings/basic.string/input_iterator.h
    libcxx/trunk/test/strings/basic.string/test_traits.h
    libcxx/trunk/test/support/DefaultOnly.h
    libcxx/trunk/test/support/allocators.h
    libcxx/trunk/test/support/min_allocator.h
    libcxx/trunk/test/support/private_constructor.hpp
    libcxx/trunk/test/support/test_allocator.h
    libcxx/trunk/test/support/test_iterators.h
    libcxx/trunk/test/thread/futures/test_allocator.h
    libcxx/trunk/test/utilities/function.objects/arithmetic.operations/transparent.pass.cpp
    libcxx/trunk/test/utilities/function.objects/bitwise.operations/transparent.pass.cpp
    libcxx/trunk/test/utilities/function.objects/comparisons/transparent.pass.cpp
    libcxx/trunk/test/utilities/function.objects/logical.operations/transparent.pass.cpp
    libcxx/trunk/test/utilities/time/clock.h
    libcxx/trunk/test/utilities/time/rep.h
    libcxx/trunk/test/utilities/tuple/tuple.tuple/MoveOnly.h
    libcxx/trunk/test/utilities/tuple/tuple.tuple/alloc_first.h
    libcxx/trunk/test/utilities/tuple/tuple.tuple/alloc_last.h

Modified: libcxx/trunk/include/support/solaris/floatingpoint.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/support/solaris/floatingpoint.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/include/support/solaris/floatingpoint.h (original)
+++ libcxx/trunk/include/support/solaris/floatingpoint.h Thu Jan 16 10:58:45 2014
@@ -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"

Modified: libcxx/trunk/include/support/solaris/wchar.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/support/solaris/wchar.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/include/support/solaris/wchar.h (original)
+++ libcxx/trunk/include/support/solaris/wchar.h Thu Jan 16 10:58:45 2014
@@ -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

Modified: libcxx/trunk/include/support/solaris/xlocale.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/support/solaris/xlocale.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/include/support/solaris/xlocale.h (original)
+++ libcxx/trunk/include/support/solaris/xlocale.h Thu Jan 16 10:58:45 2014
@@ -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.

Modified: libcxx/trunk/src/support/solaris/xlocale.c
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/src/support/solaris/xlocale.c?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/src/support/solaris/xlocale.c (original)
+++ libcxx/trunk/src/support/solaris/xlocale.c Thu Jan 16 10:58:45 2014
@@ -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__
       

Modified: libcxx/trunk/test/containers/Copyable.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/Copyable.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/containers/Copyable.h (original)
+++ libcxx/trunk/test/containers/Copyable.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/containers/Emplaceable.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/Emplaceable.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/containers/Emplaceable.h (original)
+++ libcxx/trunk/test/containers/Emplaceable.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/containers/MoveOnly.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/MoveOnly.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/containers/MoveOnly.h (original)
+++ libcxx/trunk/test/containers/MoveOnly.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/containers/NotConstructible.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/NotConstructible.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/containers/NotConstructible.h (original)
+++ libcxx/trunk/test/containers/NotConstructible.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/containers/stack_allocator.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/stack_allocator.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/containers/stack_allocator.h (original)
+++ libcxx/trunk/test/containers/stack_allocator.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/containers/test_compare.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/test_compare.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/containers/test_compare.h (original)
+++ libcxx/trunk/test/containers/test_compare.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/containers/test_hash.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/containers/test_hash.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/containers/test_hash.h (original)
+++ libcxx/trunk/test/containers/test_hash.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/test_min_max.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/test_min_max.pass.cpp?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/test_min_max.pass.cpp (original)
+++ libcxx/trunk/test/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/test_min_max.pass.cpp Thu Jan 16 10:58:45 2014
@@ -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>

Modified: libcxx/trunk/test/strings/basic.string/input_iterator.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/strings/basic.string/input_iterator.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/strings/basic.string/input_iterator.h (original)
+++ libcxx/trunk/test/strings/basic.string/input_iterator.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/strings/basic.string/test_traits.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/strings/basic.string/test_traits.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/strings/basic.string/test_traits.h (original)
+++ libcxx/trunk/test/strings/basic.string/test_traits.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/support/DefaultOnly.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/support/DefaultOnly.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/support/DefaultOnly.h (original)
+++ libcxx/trunk/test/support/DefaultOnly.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/support/allocators.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/support/allocators.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/support/allocators.h (original)
+++ libcxx/trunk/test/support/allocators.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/support/min_allocator.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/support/min_allocator.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/support/min_allocator.h (original)
+++ libcxx/trunk/test/support/min_allocator.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/support/private_constructor.hpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/support/private_constructor.hpp?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/support/private_constructor.hpp (original)
+++ libcxx/trunk/test/support/private_constructor.hpp Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/support/test_allocator.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/support/test_allocator.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/support/test_allocator.h (original)
+++ libcxx/trunk/test/support/test_allocator.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/support/test_iterators.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/support/test_iterators.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/support/test_iterators.h (original)
+++ libcxx/trunk/test/support/test_iterators.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/thread/futures/test_allocator.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/thread/futures/test_allocator.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/thread/futures/test_allocator.h (original)
+++ libcxx/trunk/test/thread/futures/test_allocator.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/utilities/function.objects/arithmetic.operations/transparent.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/utilities/function.objects/arithmetic.operations/transparent.pass.cpp?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/utilities/function.objects/arithmetic.operations/transparent.pass.cpp (original)
+++ libcxx/trunk/test/utilities/function.objects/arithmetic.operations/transparent.pass.cpp Thu Jan 16 10:58:45 2014
@@ -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>
 

Modified: libcxx/trunk/test/utilities/function.objects/bitwise.operations/transparent.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/utilities/function.objects/bitwise.operations/transparent.pass.cpp?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/utilities/function.objects/bitwise.operations/transparent.pass.cpp (original)
+++ libcxx/trunk/test/utilities/function.objects/bitwise.operations/transparent.pass.cpp Thu Jan 16 10:58:45 2014
@@ -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>
 

Modified: libcxx/trunk/test/utilities/function.objects/comparisons/transparent.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/utilities/function.objects/comparisons/transparent.pass.cpp?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/utilities/function.objects/comparisons/transparent.pass.cpp (original)
+++ libcxx/trunk/test/utilities/function.objects/comparisons/transparent.pass.cpp Thu Jan 16 10:58:45 2014
@@ -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>
 

Modified: libcxx/trunk/test/utilities/function.objects/logical.operations/transparent.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/utilities/function.objects/logical.operations/transparent.pass.cpp?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/utilities/function.objects/logical.operations/transparent.pass.cpp (original)
+++ libcxx/trunk/test/utilities/function.objects/logical.operations/transparent.pass.cpp Thu Jan 16 10:58:45 2014
@@ -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>
 

Modified: libcxx/trunk/test/utilities/time/clock.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/utilities/time/clock.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/utilities/time/clock.h (original)
+++ libcxx/trunk/test/utilities/time/clock.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/utilities/time/rep.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/utilities/time/rep.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/utilities/time/rep.h (original)
+++ libcxx/trunk/test/utilities/time/rep.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/utilities/tuple/tuple.tuple/MoveOnly.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/utilities/tuple/tuple.tuple/MoveOnly.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/utilities/tuple/tuple.tuple/MoveOnly.h (original)
+++ libcxx/trunk/test/utilities/tuple/tuple.tuple/MoveOnly.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/utilities/tuple/tuple.tuple/alloc_first.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/utilities/tuple/tuple.tuple/alloc_first.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/utilities/tuple/tuple.tuple/alloc_first.h (original)
+++ libcxx/trunk/test/utilities/tuple/tuple.tuple/alloc_first.h Thu Jan 16 10:58:45 2014
@@ -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
 

Modified: libcxx/trunk/test/utilities/tuple/tuple.tuple/alloc_last.h
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/utilities/tuple/tuple.tuple/alloc_last.h?rev=199400&r1=199399&r2=199400&view=diff
==============================================================================
--- libcxx/trunk/test/utilities/tuple/tuple.tuple/alloc_last.h (original)
+++ libcxx/trunk/test/utilities/tuple/tuple.tuple/alloc_last.h Thu Jan 16 10:58:45 2014
@@ -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
 





More information about the cfe-commits mailing list