Skip to content

Commit 6238770

Browse files
committed
Added a fix from Ralf W. Grosse-Kunstleve
[SVN r8724]
1 parent a8641c6 commit 6238770

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

include/boost/python/operators.hpp

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
// (C) Copyright Ullrich Koethe and David Abrahams 2000-2001. Permission to
2+
// copy, use, modify, sell and distribute this software is granted provided
3+
// this copyright notice appears in all copies. This software is provided "as
4+
// is" without express or implied warranty, and with no claim as to its
5+
// suitability for any purpose.
6+
//
7+
// The authors gratefully acknowlege the support of Dragon Systems, Inc., in
8+
// producing this work.
9+
//
10+
// Revision History:
11+
// 20 Jan 2001 - Added a fix from Ralf W. Grosse-Kunstleve (David Abrahams)
112
#ifndef OPERATORS_UK112000_H_
213
#define OPERATORS_UK112000_H_
314

@@ -9,9 +20,9 @@
920
// strstream instead. Also, GCC 2.95.2 doesn't have sstream.
1021
# if defined(__SGI_STL_PORT) ? defined(__SGI_STL_OWN_IOSTREAMS) : (!defined(__GNUC__) || __GNUC__ > 2)
1122
# define BOOST_PYTHON_USE_SSTREAM
12-
# endif
23+
# endi
1324

14-
#if BOOST_PYTHON_USE_SSTREAM
25+
#if defined(BOOST_PYTHON_USE_SSTREAM)
1526
# include <sstream>
1627
# else
1728
# include <strstream>

0 commit comments

Comments
 (0)