From 38d131c158c4c680b4a89b6eee7ef375bfb0bf90 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Thu, 8 Jul 2010 20:48:30 +0000 Subject: [PATCH] Fix inspect issues. [SVN r63762] --- test/implicit_fail_test.cpp | 7 ++++++- test/shared_ptr_fail_test.cpp | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/test/implicit_fail_test.cpp b/test/implicit_fail_test.cpp index 1dd0555..e48bbcd 100644 --- a/test/implicit_fail_test.cpp +++ b/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/test/shared_ptr_fail_test.cpp b/test/shared_ptr_fail_test.cpp index 584739f..b0e045f 100644 --- a/test/shared_ptr_fail_test.cpp +++ b/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 +}