diff --git a/hash/test/implicit_fail_test.cpp b/hash/test/implicit_fail_test.cpp index 1dd0555..e48bbcd 100644 --- a/hash/test/implicit_fail_test.cpp +++ b/hash/test/implicit_fail_test.cpp @@ -1,3 +1,8 @@ + +// Copyright 2010 Daniel James. +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + #include namespace test @@ -13,4 +18,4 @@ int main() { test::converts x; hash(x); -} \ No newline at end of file +} diff --git a/hash/test/shared_ptr_fail_test.cpp b/hash/test/shared_ptr_fail_test.cpp index 584739f..b0e045f 100644 --- a/hash/test/shared_ptr_fail_test.cpp +++ b/hash/test/shared_ptr_fail_test.cpp @@ -1,3 +1,8 @@ + +// Copyright 2010 Daniel James. +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + #include #include @@ -8,4 +13,4 @@ int main() { boost::shared_ptr x(new int(10)); hash(x); -} \ No newline at end of file +}