From: bangerth Date: Tue, 6 Apr 2010 14:49:41 +0000 (+0000) Subject: Fix typo: only build boost threads package if we can't rely on the X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a40dd5a82a0094d774cff97ad270cf9ba656260b;p=dealii-svn.git Fix typo: only build boost threads package if we can't rely on the compiler to provide it. git-svn-id: https://svn.dealii.org/trunk@20950 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/boost_threads.cc b/deal.II/base/source/boost_threads.cc index f73346769b..6c50ddf582 100644 --- a/deal.II/base/source/boost_threads.cc +++ b/deal.II/base/source/boost_threads.cc @@ -13,9 +13,9 @@ #include -#if (DEAL_II_USE_MT == 1) && !defined(DEAL_II_CAN_USE_CXX0X) +#if (DEAL_II_USE_MT == 1) && !defined(DEAL_II_CAN_USE_CXX1X) -// of the C++ compiler doesn't completely support the C++0x standard (and +// of the C++ compiler doesn't completely support the C++1x standard (and // consequently we can't use std::thread, std::mutex, etc), then include all // the files that form BOOST's thread implementation so that we don't have to // build BOOST itself only to get at this small part of it. it also ensures