From 97c87d0a99292026b00115f694084e2b7813c0bb Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sun, 2 Jun 2002 05:35:30 +0000 Subject: [PATCH] fixed #include guard [SVN r14065] --- include/boost/python/ptr.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/python/ptr.hpp b/include/boost/python/ptr.hpp index 4e0f067e..dfbb2153 100644 --- a/include/boost/python/ptr.hpp +++ b/include/boost/python/ptr.hpp @@ -1,5 +1,5 @@ -#ifndef BOOST_PTR_HPP_INCLUDED -# define BOOST_PTR_HPP_INCLUDED +#ifndef PTR_DWA20020601_HPP +# define PTR_DWA20020601_HPP // Copyright David Abrahams 2002. Permission to copy, use, // modify, sell and distribute this software is granted provided this // copyright notice appears in all copies. This software is provided @@ -124,4 +124,4 @@ class unwrap_pointer }} // namespace boost::python -#endif // #ifndef BOOST_PTR_HPP_INCLUDED +#endif // #ifndef PTR_DWA20020601_HPP