~ubuntu-branches/ubuntu/quantal/poco/quantal

« back to all changes in this revision

Viewing changes to Foundation/testsuite/src/DynamicAnyTest.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Burghardt
  • Date: 2008-11-15 11:39:15 UTC
  • mfrom: (3.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081115113915-7kauhm2c3m2i7oid
Tags: 1.3.3p1-2
* Fixed FTBFS with GCC 4.4 due to missing #include (Closes: #505619)
* Renamed 20_gcc43-missing-include.dpatch to 20_gcc44-missing-include.dpatch
* Downgraded dependencies on -dbg packages (Closes: #504342)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//
2
2
// DynamicAnyTest.cpp
3
3
//
4
 
// $Id: //poco/1.3/Foundation/testsuite/src/DynamicAnyTest.cpp#3 $
 
4
// $Id: //poco/1.3/Foundation/testsuite/src/DynamicAnyTest.cpp#4 $
5
5
//
6
6
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
7
7
// and Contributors.
37
37
#include "Poco/DynamicAny.h"
38
38
#include "Poco/Bugcheck.h"
39
39
 
 
40
#if defined(_MSC_VER) && _MSC_VER < 1400
 
41
#pragma warning(disable:4800)//forcing value to bool 'true' or 'false'
 
42
#endif
40
43
 
41
44
using namespace Poco;
42
45