Skip to content

Commit

Permalink
manual formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Young <[email protected]>
  • Loading branch information
TactfulDeity committed Nov 12, 2024
1 parent bbc83b2 commit 2349780
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions avogadro/core/residuedata.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,21 @@ class ResidueData
: m_residueName(std::move(name)), m_residueAtomNames(std::move(atomNames)),
m_residueSingleBonds(std::move(singleBonds)),
m_residueDoubleBonds(std::move(doubleBonds))
{
}
{}

ResidueData(const ResidueData& other)
: m_residueName(other.m_residueName),
m_residueAtomNames(other.m_residueAtomNames),
m_residueSingleBonds(other.m_residueSingleBonds),
m_residueDoubleBonds(other.m_residueDoubleBonds)
{
}
{}

ResidueData(ResidueData&& other) noexcept
: m_residueName(std::move(other.m_residueName)),
m_residueAtomNames(std::move(other.m_residueAtomNames)),
m_residueSingleBonds(std::move(other.m_residueSingleBonds)),
m_residueDoubleBonds(std::move(other.m_residueDoubleBonds))
{
}
{}

ResidueData& operator=(ResidueData other)
{
Expand Down

0 comments on commit 2349780

Please sign in to comment.