Skip to content

Commit

Permalink
Remove m_useREST from kernel/Info
Browse files Browse the repository at this point in the history
This unused variable was throwing a warning. I'm removing it since I'm
not sure how it was meant to be used.
  • Loading branch information
gadomski committed Sep 15, 2014
1 parent 6797ac4 commit 5931bfe
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion include/pdal/kernel/Info.hpp
Expand Up @@ -89,7 +89,6 @@ class PDAL_DLL Info : public Application
boost::uint32_t m_sample_size;
bool m_useXML;
bool m_useJSON;
bool m_useREST;
std::string m_Dimensions;
std::string m_QueryPoint;
double m_QueryDistance;
Expand Down
1 change: 0 additions & 1 deletion src/kernel/Info.cpp
Expand Up @@ -54,7 +54,6 @@ Info::Info(int argc, const char* argv[])
, m_computeBoundary(false)
, m_useXML(false)
, m_useJSON(false)
, m_useREST(true)
, m_QueryDistance(0.0)
, m_numPointsToWrite(0)
, m_showSample(false)
Expand Down

0 comments on commit 5931bfe

Please sign in to comment.