Skip to content

Commit

Permalink
Had to move to it's own call. MS Is not building for this
Browse files Browse the repository at this point in the history
  • Loading branch information
Garrett Potts committed Jan 14, 2016
1 parent 80227ad commit f130f67
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/elevation/ossimElevManager.cpp
Expand Up @@ -647,9 +647,12 @@ std::ostream& ossimElevManager::print(ostream& out) const
{
out<<"\nm_dbRoundRobin["<<i<<"].size = "<<m_dbRoundRobin[i].size()<<endl;
for (ossim_uint32 j=0; j<m_dbRoundRobin[i].size(); ++j)
out<<"m_dbRoundRobin["<<i<<"]["<<j<<"] = "<<m_dbRoundRobin[i][j]->print(out)<<endl;
out<<"m_dbRoundRobin["<<i<<"]["<<j<<"] = ";
m_dbRoundRobin[i][j]->print(out);
out<<endl;
}
cout<<"\n"<<ossimElevSource::print(cout);
out<<"\n";
ossimElevSource::print(out);
return out;
}

0 comments on commit f130f67

Please sign in to comment.