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-10510: Squash some compiler warnings in afw #227

Merged
merged 1 commit into from
May 11, 2017
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion include/lsst/afw/detection/Footprint.h
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ class Footprint : public lsst::daf::base::Citizen,
/**
* Report if this object is persistable
*/
bool isPersistable() const { return true; }
bool isPersistable() const override { return true; }

/**
* Dilate the Footprint with a defined kernel
Expand Down
1 change: 0 additions & 1 deletion src/detection/FootprintSet.cc
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,6 @@ static void findFootprints(
int nobj = 0; /* number of objects found */
int x0 = 0; /* unpacked from a IdSpan */

typedef typename image::Image<ImagePixelT> ImageT;
double includeThreshold = footprintThreshold * includeThresholdMultiplier; // Threshold for inclusion

int const row0 = img.getY0();
Expand Down
1 change: 0 additions & 1 deletion tests/ramFitsIO.cc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ extern "C" {
#endif
}

static int gDebugData = 0;
static string gFilename = "", gFilename2 = "";
static string gFilenameStripped = "", gFilename2Stripped = "";
static string gFilter = "r";
Expand Down