Repository: qpid-cpp Updated Branches: refs/heads/master d490824a6 -> a3a77949e
QPID-8200: Fix for -Wclass-memaccess compile error on Fedora 28 Project: http://git-wip-us.apache.org/repos/asf/qpid-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-cpp/commit/a3a77949 Tree: http://git-wip-us.apache.org/repos/asf/qpid-cpp/tree/a3a77949 Diff: http://git-wip-us.apache.org/repos/asf/qpid-cpp/diff/a3a77949 Branch: refs/heads/master Commit: a3a77949ec491ad9f7ef7c4c0261be6d032d5974 Parents: d490824 Author: Kim van der Riet <[email protected]> Authored: Fri May 25 13:36:15 2018 -0400 Committer: Kim van der Riet <[email protected]> Committed: Fri May 25 13:36:15 2018 -0400 ---------------------------------------------------------------------- src/qpid/linearstore/journal/pmgr.cpp | 10 ---------- src/qpid/linearstore/journal/pmgr.h | 1 - 2 files changed, 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-cpp/blob/a3a77949/src/qpid/linearstore/journal/pmgr.cpp ---------------------------------------------------------------------- diff --git a/src/qpid/linearstore/journal/pmgr.cpp b/src/qpid/linearstore/journal/pmgr.cpp index 764beaa..269c8c5 100644 --- a/src/qpid/linearstore/journal/pmgr.cpp +++ b/src/qpid/linearstore/journal/pmgr.cpp @@ -25,16 +25,6 @@ namespace qpid { namespace linearstore { namespace journal { -pmgr::page_cb::page_cb(uint16_t index): - _index(index), - _state(UNUSED), - _frid(0), - _wdblks(0), - _pdtokl(0), - _jfp(0), - _pbuff(0) -{} - // TODO: almost identical to pmgr::page_state_str() below - resolve const char* pmgr::page_cb::state_str() const http://git-wip-us.apache.org/repos/asf/qpid-cpp/blob/a3a77949/src/qpid/linearstore/journal/pmgr.h ---------------------------------------------------------------------- diff --git a/src/qpid/linearstore/journal/pmgr.h b/src/qpid/linearstore/journal/pmgr.h index e618397..05127ae 100644 --- a/src/qpid/linearstore/journal/pmgr.h +++ b/src/qpid/linearstore/journal/pmgr.h @@ -70,7 +70,6 @@ public: JournalFile* _jfp; ///< Journal file for incrementing compl counts void* _pbuff; ///< Page buffer - page_cb(uint16_t index); ///< Convenience constructor const char* state_str() const; ///< Return state as string for this pcb }; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
