Skip to content

Commit e7a7782

Browse files
author
Poehnl Michael (CC-AD/ESW1)
committed
iox-eclipse-iceoryx#27-1: request and response header should be moveable
Signed-off-by: Poehnl Michael (CC-AD/ESW1) <[email protected]>
1 parent 21de183 commit e7a7782

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

iceoryx_posh/include/iceoryx_posh/internal/popo/ports/client_server_port_types.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class RequestHeader
103103
private:
104104
int64_t m_sequenceNumber{0};
105105
bool m_isFireAndForget{false};
106-
const relative_ptr<ClientChunkQueueData_t> m_responseQueue;
106+
relative_ptr<ClientChunkQueueData_t> m_responseQueue;
107107
};
108108

109109
class ResponseHeader
@@ -148,9 +148,9 @@ class ResponseHeader
148148
}
149149

150150
private:
151-
const int64_t m_sequenceNumber{0};
151+
int64_t m_sequenceNumber{0};
152152
bool m_hasServerError{false};
153-
const relative_ptr<ClientChunkQueueData_t> m_destinationQueue;
153+
relative_ptr<ClientChunkQueueData_t> m_destinationQueue;
154154
};
155155

156156

0 commit comments

Comments
 (0)