1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-10 01:50:46 +02:00

Format sources with clang-format

This commit is contained in:
Miguel Prada
2018-11-20 09:47:17 +01:00
parent d7a59872b2
commit 9e276a3368
20 changed files with 177 additions and 163 deletions

View File

@@ -110,7 +110,6 @@ public:
}
};
template <typename T>
class Pipeline
{
@@ -140,7 +139,7 @@ private:
{
if (!queue_.try_enqueue(std::move(p)))
{
LOG_ERROR("Pipeline producer overflowed! <%s>",name_.c_str());
LOG_ERROR("Pipeline producer overflowed! <%s>", name_.c_str());
}
}
@@ -201,7 +200,7 @@ public:
if (!running_)
return;
LOG_DEBUG("Stopping pipeline! <%s>",name_.c_str());
LOG_DEBUG("Stopping pipeline! <%s>", name_.c_str());
consumer_.stopConsumer();
producer_.stopProducer();