Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-22823: Remove accidental Doxygen comments for namespaces #226

Merged
merged 1 commit into from
Aug 2, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 6 additions & 5 deletions include/lsst/jointcal/SimpleAstrometryMapping.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,15 @@
#include "lsst/jointcal/AstrometryMapping.h"
#include "lsst/jointcal/AstrometryTransform.h"

//! Class for a simple mapping implementing a generic AstrometryTransform
/*! It uses a template rather than a pointer so that the derived
classes can use the specifics of the transform. The class
simplePolyMapping overloads a few routines. */

namespace lsst {
namespace jointcal {

/** Class for a simple mapping implementing a generic AstrometryTransform
*
* It uses a template rather than a pointer so that the derived
* classes can use the specifics of the transform. The class
* simplePolyMapping overloads a few routines.
*/
class SimpleAstrometryMapping : public AstrometryMapping {
public:
SimpleAstrometryMapping(AstrometryTransform const &astrometryTransform, bool toBeFit = true)
Expand Down