Fix inspect issues.

[SVN r63762]
This commit is contained in:
Daniel James
2010-07-08 20:48:30 +00:00
parent 2553a5fbdc
commit 38d131c158
2 changed files with 12 additions and 2 deletions

View File

@@ -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 <boost/functional/hash.hpp>
namespace test
@@ -13,4 +18,4 @@ int main() {
test::converts x;
hash(x);
}
}

View File

@@ -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 <boost/functional/hash.hpp>
#include <boost/shared_ptr.hpp>
@@ -8,4 +13,4 @@ int main() {
boost::shared_ptr<int> x(new int(10));
hash(x);
}
}