「view this page in B3 βῆτα server」

Revisions №61740

branch: master 「№61740」
Commited by: Vikram K. Mulligan
GitHub commit link: 「2b3c6683b35d96f1」 「№5552」
Difference from previous tested commit:  code diff
Commit date: 2021-08-20 19:40:44

Merge pull request #5552 from RosettaCommons/vmullig/fix_gcc_11_errors Fix compilation errors that appear with GCC 11 Mostly warnings-as-errors, though some things might be actual bugs. Apparent actual bugs include: - An owning pointer that's created and used in `protocols/frag_picker/scores/RamaScore.cc` without ever creating an object to which it points. (Fixed now; the OP uses `make_shared` during its creation.) - `AlignRmsdTargetEvaluatorCreator::add_evaluators()` was a mess; again, a null owning pointer was being treated as though it pointed to sometihng. This is fixed now, albeit not necessarily in the most elegant way. - A null pointer to a MoveMap was used in `GeneralAntibodyModeler`. Fixed. - In the splice utilities, splice was a nullptr, but was used. - In the CartMinlopCloser, the MoveMapOP was null but was used.

...