Skip to content

Commit

Permalink
begin and end variables aren't being used anymore because the pdal la…
Browse files Browse the repository at this point in the history
…s writer doesn't append
  • Loading branch information
hobu committed Feb 16, 2012
1 parent b241c99 commit 1e7f957
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/drivers/las/LasHeaderWriter.cpp
Expand Up @@ -70,12 +70,12 @@ void LasHeaderWriter::write()
boost::uint32_t n4 = 0;

// Seek to the beginning
m_ostream.seekp(0, ios::beg);
ios::pos_type begin = m_ostream.tellp();
// m_ostream.seekp(0, ios::beg);
// ios::pos_type begin = m_ostream.tellp();

// Seek to the end
m_ostream.seekp(0, ios::end);
ios::pos_type end = m_ostream.tellp();
// ios::pos_type end = m_ostream.tellp();

// we initially have no VLRs
assert(m_header.getVLRs().count() == 0);
Expand Down

0 comments on commit 1e7f957

Please sign in to comment.