diff options
| author | Gordon Sim <gsim@apache.org> | 2013-04-30 15:46:53 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2013-04-30 15:46:53 +0000 |
| commit | 37323eb6adbf634039f955504a9a4842fe39d9c2 (patch) | |
| tree | 9a1f24b21731a83e9c8735e7f133477470a18721 /cpp/src/qpid/sys/windows/MemoryMappedFile.cpp | |
| parent | 1eaa4da4c71e37c51277f6db5b7d1ce2cd264d17 (diff) | |
| download | qpid-python-37323eb6adbf634039f955504a9a4842fe39d9c2.tar.gz | |
QPID-4339: fix for older compilers/c++ libraries
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1477698 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/windows/MemoryMappedFile.cpp')
| -rw-r--r-- | cpp/src/qpid/sys/windows/MemoryMappedFile.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpid/sys/windows/MemoryMappedFile.cpp b/cpp/src/qpid/sys/windows/MemoryMappedFile.cpp index c43a50db74..ba3358ae23 100644 --- a/cpp/src/qpid/sys/windows/MemoryMappedFile.cpp +++ b/cpp/src/qpid/sys/windows/MemoryMappedFile.cpp @@ -24,7 +24,8 @@ namespace qpid { namespace sys { class MemoryMappedFilePrivate {}; -MemoryMappedFile::MemoryMappedFile() {} +MemoryMappedFile::MemoryMappedFile() : state(0) {} +MemoryMappedFile::~MemoryMappedFile() {} std::string MemoryMappedFile::open(const std::string& /*name*/, const std::string& /*directory*/) { |
