Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Components
Assignee
Tim KlemmTim KlemmReporter
Tim KlemmTim KlemmPriority
LowFix versions
Pull Request URL
Details
Details
Components
Assignee
Tim Klemm
Tim KlemmReporter
Tim Klemm
Tim KlemmPriority
Fix versions
Pull Request URL
Created October 21, 2024 at 3:21 PM
Updated January 15, 2025 at 4:10 PM
Resolved October 22, 2024 at 12:01 PM
/Users/runner/work/HPCC-Platform/HPCC-Platform/HPCC-Platform/system/mp/mpcomm.cpp:228:110: error: field 'endpoint' will be initialized after field 'msg' [-Werror,-Wreorder-ctor]
915 CMPException(MessagePassingError err,const SocketEndpoint &ep, const char *_msg = nullptr) : error(err), endpoint(ep), msg(_msg)
916 ~~~~~~~~~~ ^~~~~~~~~~~~ ~~~~~~~~~
917 msg(_msg) error(err) endpoint(ep)
918
I know it has been recommended to initialize member values in the order they are declared. The Apple compiler now seems to require it by default.