Skip to content

Commit

Permalink
Remove old deprecation comment.
Browse files Browse the repository at this point in the history
A comment about the deprecation of invert() in favor of inverted() was
provided with the declaration of inverted().
  • Loading branch information
kfindeisen committed Dec 14, 2019
1 parent 8ff0b9f commit ac3a7d2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions include/lsst/geom/LinearTransform.h
Original file line number Diff line number Diff line change
Expand Up @@ -154,16 +154,12 @@ class LinearTransform final {
double& operator[](int i) { return _matrix(i % 2, i / 2); }
double const& operator[](int i) const { return const_cast<Matrix&>(_matrix)(i % 2, i / 2); }

//@{
/**
* Return the inverse transform.
*
* @deprecated invert is deprecated in favor of inverted
*
* @throws lsst::geom::SingularTransformException if not invertible
*/
LinearTransform const inverted() const;
//@}

/**
* Return the determinant of the 2x2 matrix
Expand Down

0 comments on commit ac3a7d2

Please sign in to comment.