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

Revisions №2

branch: rosetta:release-quarterly 「№2」
Commited by: lyskov-ai
GitHub commit link: 「80a0635615099e1b」
Difference from previous tested commit:  code diff
Commit date: 2026-07-14 18:24:11
m1.clang.python310.release.PyRosetta.MinSizeRel m1.clang.python311.release.PyRosetta.MinSizeRel m1.clang.python312.release.PyRosetta.MinSizeRel m1.clang.python313.release.PyRosetta.MinSizeRel m1.clang.python314.release.PyRosetta.MinSizeRel m1.clang.python39.release.PyRosetta.MinSizeRel mac.clang.python310.release.PyRosetta.MinSizeRel mac.clang.python311.release.PyRosetta.MinSizeRel mac.clang.python312.release.PyRosetta.MinSizeRel mac.clang.python313.release.PyRosetta.MinSizeRel mac.clang.python314.release.PyRosetta.MinSizeRel mac.clang.python39.release.PyRosetta.MinSizeRel ubuntu.clang.python310.release.PyRosetta.MinSizeRel ubuntu.clang.python311.release.PyRosetta.MinSizeRel ubuntu.clang.python312.release.PyRosetta.MinSizeRel ubuntu.clang.python313.release.PyRosetta.MinSizeRel ubuntu.clang.python314.release.PyRosetta.MinSizeRel ubuntu.clang.python39.release.PyRosetta.MinSizeRel m1.clang.cxx11thread.serialization.python310.release.PyRosetta.Release m1.clang.cxx11thread.serialization.python311.release.PyRosetta.Release m1.clang.cxx11thread.serialization.python312.release.PyRosetta.Release m1.clang.cxx11thread.serialization.python313.release.PyRosetta.Release m1.clang.cxx11thread.serialization.python314.release.PyRosetta.Release m1.clang.cxx11thread.serialization.python39.release.PyRosetta.Release m1.clang.python310.release.PyRosetta.Release m1.clang.python311.release.PyRosetta.Release m1.clang.python312.release.PyRosetta.Release m1.clang.python313.release.PyRosetta.Release m1.clang.python314.release.PyRosetta.Release m1.clang.python39.release.PyRosetta.Release mac.clang.cxx11thread.serialization.python310.release.PyRosetta.Release mac.clang.cxx11thread.serialization.python311.release.PyRosetta.Release mac.clang.cxx11thread.serialization.python312.release.PyRosetta.Release mac.clang.cxx11thread.serialization.python313.release.PyRosetta.Release mac.clang.cxx11thread.serialization.python314.release.PyRosetta.Release mac.clang.cxx11thread.serialization.python39.release.PyRosetta.Release mac.clang.python310.release.PyRosetta.Release mac.clang.python311.release.PyRosetta.Release mac.clang.python312.release.PyRosetta.Release mac.clang.python313.release.PyRosetta.Release mac.clang.python314.release.PyRosetta.Release mac.clang.python39.release.PyRosetta.Release ubuntu-20.04.clang.cxx11thread.serialization.python314.release.PyRosetta.Release ubuntu.clang.cxx11thread.serialization.python310.release.PyRosetta.Release ubuntu.clang.cxx11thread.serialization.python311.release.PyRosetta.Release ubuntu.clang.cxx11thread.serialization.python312.release.PyRosetta.Release ubuntu.clang.cxx11thread.serialization.python313.release.PyRosetta.Release ubuntu.clang.cxx11thread.serialization.python39.release.PyRosetta.Release ubuntu.clang.python310.release.PyRosetta.Release ubuntu.clang.python311.release.PyRosetta.Release ubuntu.clang.python312.release.PyRosetta.Release ubuntu.clang.python313.release.PyRosetta.Release ubuntu.clang.python314.release.PyRosetta.Release ubuntu.clang.python39.release.PyRosetta.Release

Apply Rule of Zero to protocols/ classes with redundant destructors (#725) ## Summary Applies the Rule of Zero to a set of `protocols/` classes that declared a redundant special member — a destructor equivalent to the implicitly-generated one — and lets the compiler generate it instead. Each removed destructor was either `= default` or an empty `{}` body, and in every case the class holds only **non-owning** raw pointers (back-references it does not allocate or free), so no destructor logic is lost and ownership semantics are unchanged. Classes updated: - `antibody/clusters/CDRClusterSet` — drop `= default` dtor (`ab_info_` is a non-owning back-pointer). - `hbnet/NetworkState` — drop empty `~NetworkState(){}` (non-owning `HBondEdge const *`). - `jobdist/AtomTreeDiffJobDistributor` — drop `= default` dtor (non-owning `Pose const * last_ref_pose_`). - `nmr/pcs/AtomGridPoint` — drop empty dtor (non-owning `Residue const *`). - `noesy_assign/FloatingResonance` — drop `= default` dtor (non-owning `ResonanceList const *`). - `noesy_assign/PeakAssignment` — drop `= default` dtor (non-owning `CrossPeak *`). - `peptide_deriver/PeptideDeriverBasicStreamOutputter` — drop `= default` dtor **and** the user-declared copy constructor, which performed a plain memberwise copy (`out_p_`, `prefix_`) identical to the implicit one. `out_p_` is a non-owning `orstream *`. For the classes deriving from a base with a virtual destructor (`override` dtors), the implicitly-generated destructor is virtual and inherited, so polymorphic destruction is unchanged. Removing these destructors also re-enables implicit move operations (previously suppressed), which is harmless for these value/back-pointer members. A couple of now-moot "auto-generated destructor" doc comments were removed alongside their declarations.

...