Skip to content

Commit

Permalink
Lowered C++ standard to C++11
Browse files Browse the repository at this point in the history
  • Loading branch information
peci1 authored Jun 29, 2021
1 parent 761d069 commit 3f31382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scan_to_cloud_filter_chain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class ScanToCloudFilterChainNodelet : public nodelet::Nodelet
std::unique_ptr<ScanToCloudFilterChain> chain_;

void onInit() override {
chain_ = std::make_unique<ScanToCloudFilterChain>(getPrivateNodeHandle(), getName());
chain_ = std::unique_ptr<ScanToCloudFilterChain>(new ScanToCloudFilterChain(getPrivateNodeHandle(), getName()));
}
};

Expand Down

0 comments on commit 3f31382

Please sign in to comment.