Fix typos in comments.

[SVN r11148]
This commit is contained in:
Darin Adler
2001-09-19 15:04:41 +00:00
parent 732dd723dd
commit fc2daf1bf8

View File

@@ -23,9 +23,9 @@
// POSIX defines _POSIX_THREADS > 0 for pthread support,
// however some platforms define _POSIX_THREADS without
// a value, hence the (_POSIX_THREADS+0 >= 0) check.
// Strictly speeking this may catch platforms with a
// Strictly speaking this may catch platforms with a
// non-functioning stub <pthreads.h>, but such occurrences should
// occur very rarely if at all...
// occur very rarely if at all.
# if defined(_POSIX_THREADS) && (_POSIX_THREADS+0 >= 0)
# define BOOST_HAS_PTHREADS
# endif