From d066c9af8fdc374abcc099d080b8239b30d919e4 Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 26 Aug 2010 15:42:13 +0000 Subject: [PATCH] Fix a warning. git-svn-id: https://svn.dealii.org/trunk@21728 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/contrib/boost/libs/thread/src/pthread/once.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deal.II/contrib/boost/libs/thread/src/pthread/once.cpp b/deal.II/contrib/boost/libs/thread/src/pthread/once.cpp index 6e3722a8e3..94769a03ea 100644 --- a/deal.II/contrib/boost/libs/thread/src/pthread/once.cpp +++ b/deal.II/contrib/boost/libs/thread/src/pthread/once.cpp @@ -3,7 +3,9 @@ // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -#define __STDC_CONSTANT_MACROS +#ifndef __STDC_CONSTANT_MACROS +# define __STDC_CONSTANT_MACROS +#endif #include #include #include -- 2.39.5