Skip to content

Commit

Permalink
Use angle brackets for os-specific includes.
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Jun 27, 2024
1 parent 2a036e3 commit 1e416ee
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 10 deletions.
3 changes: 2 additions & 1 deletion bu/BuPyramid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
#include "OctantInfo.hpp"
#include "../untwine/Common.hpp"
#include "../untwine/ProgressWriter.hpp"
#include "dirlist.hpp"

#include <dirlist.hpp> //untwine/os

namespace untwine
{
Expand Down
3 changes: 2 additions & 1 deletion bu/CopcSupport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@

#include "../untwine/Common.hpp"
#include "../untwine/FileDimInfo.hpp"
#include "stringconv.hpp"

#include <stringconv.hpp> // untwine/os

namespace untwine
{
Expand Down
2 changes: 1 addition & 1 deletion bu/FileInfo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#include <list>

#include "mapfile.hpp"
#include <mapfile.hpp> // untwine/os

namespace untwine
{
Expand Down
3 changes: 2 additions & 1 deletion bu/PointAccessor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@

#include "../untwine/Common.hpp"
#include "../untwine/Point.hpp"
#include "mapfile.hpp"

#include <mapfile.hpp> // untwine/os

#include "FileInfo.hpp"

Expand Down
3 changes: 2 additions & 1 deletion bu/Processor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@

#include "Processor.hpp"
#include "PyramidManager.hpp"
#include "stringconv.hpp"

#include <stringconv.hpp> // untwine/os

namespace untwine
{
Expand Down
2 changes: 1 addition & 1 deletion epf/Epf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <pdal/util/FileUtils.hpp>
#include <pdal/util/ProgramArgs.hpp>

#include "dirlist.hpp"
#include <dirlist.hpp> // untwine/os

namespace untwine
{
Expand Down
3 changes: 2 additions & 1 deletion epf/Reprocessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@

#include "Reprocessor.hpp"
#include "../untwine/Common.hpp"
#include "mapfile.hpp"

#include <mapfile.hpp> // untwine/os

namespace untwine
{
Expand Down
3 changes: 2 additions & 1 deletion epf/Writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
#include "Epf.hpp"
#include "../untwine/Common.hpp"
#include "../untwine/VoxelKey.hpp"
#include "stringconv.hpp"

#include <stringconv.hpp> // untwine/os

using namespace pdal;

Expand Down
5 changes: 3 additions & 2 deletions untwine/Untwine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@

#include "../epf/Epf.hpp"
#include "../bu/BuPyramid.hpp"
#include "dirlist.hpp"
#include "stringconv.hpp"

#include <dirlist.hpp> // untwine/os
#include <stringconv.hpp> // untwine/os

namespace untwine
{
Expand Down

0 comments on commit 1e416ee

Please sign in to comment.