Skip to content
Snippets Groups Projects
Commit 5d1bd388 authored by Julien Malik's avatar Julien Malik
Browse files

ENH: missing initialization of pod types in OTB_GCP default ctor

parent fc5d59ee
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,14 @@ MetaDataKey::KeyType MetaDataKey::GetKeyType(const std::string& name)
return (ktype);
}
OTB_GCP::OTB_GCP() {};
OTB_GCP::OTB_GCP()
: m_GCPCol(0),
m_GCPRow(0),
m_GCPX(0),
m_GCPY(0),
m_GCPZ(0)
{
}
OTB_GCP::OTB_GCP(const OTB_GCP &pGcp)
{
......
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