Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use nullptr, not NULL
  • Loading branch information
eric-wieser committed Mar 1, 2016
commit 81a47b0ab254318a866270d73384a80d797a76a0
2 changes: 1 addition & 1 deletion src/zed_wrapper_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ int main(int argc, char **argv) {
ros::Time old_t = ros::Time::now();
bool old_image = false;
pointCloudThreadRunning = false;
std::unique_ptr<std::thread> pointCloudThread = NULL;
std::unique_ptr<std::thread> pointCloudThread = nullptr;

try {
// Main loop
Expand Down