Skip to content

Commit 26e80b7

Browse files
committed
Fix windows compilation issue.
[git-p4: depot-paths = "//dev/release.cpp/coherence-cpp-v14.1.1.0/": change = 92674]
1 parent f986b43 commit 26e80b7

File tree

2 files changed

+6
-29
lines changed

2 files changed

+6
-29
lines changed

include/private/coherence/component/net/extend/protocol/cache/NoStorageMembers.hpp

Lines changed: 6 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99

1010
#include "coherence/lang.ns"
1111

12-
#include "coherence/io/pof/PofReader.hpp"
13-
#include "coherence/io/pof/PofWriter.hpp"
14-
15-
#include "private/coherence/component/net/extend/AbstractPofResponse.hpp"
1612
#include "private/coherence/component/net/extend/protocol/cache/NamedCacheRequest.hpp"
1713

1814
COH_OPEN_NAMESPACE6(coherence,component,net,extend,protocol,cache)
@@ -37,26 +33,19 @@ class COH_EXPORT NoStorageMembers
3733
*/
3834
NoStorageMembers();
3935

40-
// ----- Message interface ----------------------------------------------
41-
42-
public:
36+
private:
4337
/**
44-
* {@inheritDoc}
45-
*/
46-
virtual int32_t getTypeId() const;
38+
* Blocked copy constructor.
39+
*/
40+
NoStorageMembers(const NoStorageMembers&);
4741

48-
// ----- PortableObject interface ---------------------------------------
42+
// ----- Message interface ----------------------------------------------
4943

5044
public:
5145
/**
5246
* {@inheritDoc}
5347
*/
54-
virtual void readExternal(PofReader::Handle hIn);
55-
56-
/**
57-
* {@inheritDoc}
58-
*/
59-
virtual void writeExternal(PofWriter::Handle hOut) const;
48+
virtual int32_t getTypeId() const;
6049

6150
// ----- internal methods -----------------------------------------------
6251

src/coherence/component/net/extend/protocol/cache/NoStorageMembers.cpp

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,6 @@ int32_t NoStorageMembers::getTypeId() const
3838
return type_id;
3939
}
4040

41-
// ----- PortableObject interface -------------------------------------------
42-
43-
void NoStorageMembers::readExternal(PofReader::Handle hIn)
44-
{
45-
NamedCacheRequest::readExternal(hIn);
46-
}
47-
48-
void NoStorageMembers::writeExternal(PofWriter::Handle hOut) const
49-
{
50-
NamedCacheRequest::writeExternal(hOut);
51-
}
52-
5341
// ----- internal methods ---------------------------------------------------
5442

5543
void NoStorageMembers::onRun(AbstractPofResponse::Handle /*hResponse*/)

0 commit comments

Comments
 (0)