Skip to content

Commit

Permalink
Remove deprecated copies
Browse files Browse the repository at this point in the history
Addresses #332

Signed-off-by: Michael Carroll <[email protected]>
  • Loading branch information
mjcarroll committed Mar 15, 2022
1 parent ba10632 commit 734fb51
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 17 deletions.
9 changes: 0 additions & 9 deletions include/ignition/physics/SpecifyData.hh
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,6 @@ namespace ignition
/// \brief Default constructor
public: ExpectData();

/// \brief Copy constructor.
/// The copy constructor of the base class, CompositeData, is called
/// before this copy constructor and it does the actual copying of the
/// data contained in the MapData object of `_other`. Thus, this copy
/// constructor simply calls the default constructor to initialize the
/// MapData iterator of this object to point the appropriate iterator in
/// the newly copied MapData.
public: ExpectData(const ExpectData &_other);

/// TODO(anyone) Implement move constructor and assignment operator. Due
/// to the multiple inheritence used to implement SpcifyData, care must be
/// taken when implementing move constructs to avoid calling a move
Expand Down
8 changes: 0 additions & 8 deletions include/ignition/physics/detail/SpecifyData.hh
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,6 @@ namespace ignition
// Do nothing
}

/////////////////////////////////////////////////
template <typename Expected>
ExpectData<Expected>::ExpectData(const ExpectData<Expected> &)
: ExpectData()
{
// Do nothing
}

/////////////////////////////////////////////////
template <typename Expected>
template <typename Data>
Expand Down

0 comments on commit 734fb51

Please sign in to comment.