From f67694e4555629421458f91f460735928abad628 Mon Sep 17 00:00:00 2001 From: Guenter Obiltschnig Date: Tue, 10 Mar 2009 15:08:35 +0000 Subject: [PATCH] fixed SF# 2630476: Thread_POSIX::setStackSize() failure with g++ 4.3 --- Foundation/src/Thread_POSIX.cpp | 2 +- Foundation/testsuite/src/ThreadTest.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Foundation/src/Thread_POSIX.cpp b/Foundation/src/Thread_POSIX.cpp index 74f6050ce..449d35ba3 100644 --- a/Foundation/src/Thread_POSIX.cpp +++ b/Foundation/src/Thread_POSIX.cpp @@ -42,8 +42,8 @@ # if !defined(__EXTENSIONS__) # define __EXTENSIONS__ # endif -# include #endif +#include // diff --git a/Foundation/testsuite/src/ThreadTest.cpp b/Foundation/testsuite/src/ThreadTest.cpp index 0e5220988..d56c148d5 100644 --- a/Foundation/testsuite/src/ThreadTest.cpp +++ b/Foundation/testsuite/src/ThreadTest.cpp @@ -41,8 +41,8 @@ # if !defined(__EXTENSIONS__) # define __EXTENSIONS__ # endif -#include #endif +#include using Poco::Thread;