-Wundef fixes.

[SVN r18788]
This commit is contained in:
Peter Dimov 2003-06-12 17:09:24 +00:00
parent 1c7a2a1476
commit 20a89040e1
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
#ifndef BOOST_CHECKED_DELETE_HPP_INCLUDED
#define BOOST_CHECKED_DELETE_HPP_INCLUDED
#if _MSC_VER >= 1020
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif

View File

@ -1,7 +1,7 @@
#ifndef BOOST_CURRENT_FUNCTION_HPP_INCLUDED
#define BOOST_CURRENT_FUNCTION_HPP_INCLUDED
#if _MSC_VER >= 1020
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif