Skip to content
Snippets Groups Projects
Commit d0bbd880 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

Remove unused private attribute.

parent 8afd7b1e
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,7 @@ namespace GeoLib
////////////////////////
StationBorehole::StationBorehole(double x, double y, double z, const std::string &name) :
Station (x, y, z, name), _zCoord(0), _depth(0), _date(0)
Station (x, y, z, name), _depth(0), _date(0)
{
_type = Station::BOREHOLE;
addProperty("date", &StationBorehole::getDate, &StationBorehole::setDate);
......
......@@ -117,7 +117,6 @@ private:
//long profile_type;
//std::vector<long> _soilType;
double _zCoord; // height at which the borehole officially begins (this might _not_ be the actual elevation)
double _depth; // depth of the borehole
int _date; // date when the borehole has been drilled
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment