summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-07-03 14:19:04 +0000
committernoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-07-03 14:19:04 +0000
commit483495a88d522b95339ac234dcddfa3c49f5fd8f (patch)
treef161d7503e72abca02f262632292f3b6f2405e6a
parentb2ce57084aa59f4cce23dea762c0692973b15c6a (diff)
downloadcryptopp-483495a88d522b95339ac234dcddfa3c49f5fd8f.tar.gz
Cleared "Access declarations are deprecated..." warning under MinGW
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@568 57ff6487-cd31-0410-9ec3-f628ee90f5f0
-rw-r--r--winpipes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/winpipes.h b/winpipes.h
index 07225f9..ade93bb 100644
--- a/winpipes.h
+++ b/winpipes.h
@@ -112,8 +112,8 @@ public:
PumpAll();
}
- NetworkSource::GetMaxWaitObjectCount;
- NetworkSource::GetWaitObjects;
+ using NetworkSource::GetMaxWaitObjectCount;
+ using NetworkSource::GetWaitObjects;
private:
HANDLE GetHandle() const {return WindowsHandle::GetHandle();}
@@ -127,8 +127,8 @@ public:
WindowsPipeSink(HANDLE h=INVALID_HANDLE_VALUE, unsigned int maxBufferSize=0, unsigned int autoFlushBound=16*1024)
: WindowsHandle(h), NetworkSink(maxBufferSize, autoFlushBound) {}
- NetworkSink::GetMaxWaitObjectCount;
- NetworkSink::GetWaitObjects;
+ using NetworkSink::GetMaxWaitObjectCount;
+ using NetworkSink::GetWaitObjects;
private:
HANDLE GetHandle() const {return WindowsHandle::GetHandle();}