Skip to content

Commit

Permalink
Removing boost cstdint header
Browse files Browse the repository at this point in the history
  • Loading branch information
kunaltyagi committed Oct 18, 2019
1 parent 57412c5 commit 0806ca1
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cuda/io/include/pcl/cuda/io/disparity_to_cloud.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
//#include <pcl/CameraInfo.h>
//#include <pcl/PCLImage.h>

#include <boost/cstdint.hpp>
#include <cstdint>

namespace pcl
{
Expand Down
2 changes: 1 addition & 1 deletion gpu/people/include/pcl/gpu/people/tree.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#pragma once

#include "label_common.h"
#include <boost/cstdint.hpp>
#include <cstdint>
#include <iostream>
#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion io/include/pcl/compression/entropy_range_coder.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
#include <cmath>
#include <algorithm>
#include <cstdio>
#include <boost/cstdint.hpp>
#include <cstdint>

namespace pcl
{
Expand Down
1 change: 0 additions & 1 deletion io/include/pcl/io/boost.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
#include <boost/version.hpp>
#include <boost/numeric/conversion/cast.hpp>
#include <boost/filesystem.hpp>
#include <boost/cstdint.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>
#include <boost/mpl/fold.hpp>
Expand Down
2 changes: 1 addition & 1 deletion io/include/pcl/io/buffers.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#include <mutex>
#include <vector>

#include <boost/cstdint.hpp>
#include <cstdint>

namespace pcl
{
Expand Down
2 changes: 1 addition & 1 deletion io/include/pcl/io/openni2/openni2_device.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#include "pcl/io/io_exception.h"

#include <boost/shared_ptr.hpp>
#include <boost/cstdint.hpp>
#include <cstdint>
#include <functional>
#include <string>
#include <vector>
Expand Down
2 changes: 1 addition & 1 deletion io/include/pcl/io/openni2/openni2_device_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

#include <ostream>

#include <boost/cstdint.hpp>
#include <cstdint>

namespace pcl
{
Expand Down
2 changes: 1 addition & 1 deletion io/src/ascii_io.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#include <istream>
#include <fstream>
#include <boost/filesystem.hpp>
#include <boost/cstdint.hpp>
#include <cstdint>

//////////////////////////////////////////////////////////////////////////////
pcl::ASCIIReader::ASCIIReader ()
Expand Down

0 comments on commit 0806ca1

Please sign in to comment.