Skip to content

Commit

Permalink
boost:: prefix types
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Apr 11, 2013
1 parent 937ba46 commit c1c4077
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/drivers/las/Header.cpp
Expand Up @@ -93,7 +93,7 @@ LasHeader::LasHeader(LasHeader const& other) :
assert(p == m_systemId);
p = std::memcpy(m_softwareId, other.m_softwareId, eSoftwareIdSize);
assert(p == m_softwareId);
std::vector<uint32_t>(other.m_pointRecordsByReturn).swap(m_pointRecordsByReturn);
std::vector<boost::uint32_t>(other.m_pointRecordsByReturn).swap(m_pointRecordsByReturn);
assert(ePointsByReturnSize >= m_pointRecordsByReturn.size());

// std::vector<VariableRecord>(other.m_vlrs).swap(m_vlrs);
Expand Down Expand Up @@ -121,7 +121,7 @@ LasHeader& LasHeader::operator=(LasHeader const& rhs)
m_dataOffset = rhs.m_dataOffset;
m_pointRecordsCount = rhs.m_pointRecordsCount;

std::vector<uint32_t>(rhs.m_pointRecordsByReturn).swap(m_pointRecordsByReturn);
std::vector<boost::uint32_t>(rhs.m_pointRecordsByReturn).swap(m_pointRecordsByReturn);
assert(ePointsByReturnSize >= m_pointRecordsByReturn.size());

m_scales = rhs.m_scales;
Expand Down

0 comments on commit c1c4077

Please sign in to comment.