Skip to content

Commit

Permalink
Silence warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Yankes committed Mar 28, 2023
1 parent 1707edb commit 32819ca
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
7 changes: 0 additions & 7 deletions src/Engine/GraphSubset.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,6 @@ struct GraphSubset

}

GraphSubset(const GraphSubset& r):
beg_x(r.beg_x), end_x(r.end_x),
beg_y(r.beg_y), end_y(r.end_y)
{

}

inline GraphSubset offset(int x, int y) const
{
GraphSubset ret = *this;
Expand Down
11 changes: 0 additions & 11 deletions src/Geoscape/Cord.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@ struct CordPolar
lon = plon;
lat = plat;
}
inline CordPolar(const CordPolar& pol)
{
lon = pol.lon;
lat = pol.lat;
}
inline CordPolar()
{
lon = 0;
Expand All @@ -56,12 +51,6 @@ struct Cord
y = py;
z = pz;
}
inline Cord(const Cord& c)
{
x = c.x;
y = c.y;
z = c.z;
}
inline Cord()
{
x = 0.0;
Expand Down

0 comments on commit 32819ca

Please sign in to comment.