mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-14 11:06:57 +01:00
- FileStream_WIN32 constructor openmode argument
- DynamicAnyTest and AnyTest warning disable for VS 2003
This commit is contained in:
parent
94eb954cc6
commit
40445c9d3e
@ -46,7 +46,7 @@ namespace Poco {
|
||||
|
||||
|
||||
FileStreamBuf::FileStreamBuf():
|
||||
BufferedBidirectionalStreamBuf(BUFFER_SIZE, 0),
|
||||
BufferedBidirectionalStreamBuf(BUFFER_SIZE, std::ios::in | std::ios::out),
|
||||
_handle(INVALID_HANDLE_VALUE),
|
||||
_pos(0)
|
||||
{
|
||||
|
@ -38,6 +38,9 @@
|
||||
#include "Poco/Bugcheck.h"
|
||||
#include <vector>
|
||||
|
||||
#if defined(_MSC_VER) && _MSC_VER < 1400
|
||||
#pragma warning(disable:4800)//forcing value to bool 'true' or 'false'
|
||||
#endif
|
||||
|
||||
using namespace Poco;
|
||||
|
||||
|
@ -39,6 +39,11 @@
|
||||
#include "Poco/DynamicStruct.h"
|
||||
|
||||
|
||||
#if defined(_MSC_VER) && _MSC_VER < 1400
|
||||
#pragma warning(disable:4800)//forcing value to bool 'true' or 'false'
|
||||
#endif
|
||||
|
||||
|
||||
using namespace Poco;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user