Skip to content
Snippets Groups Projects
Commit 662b84e4 authored by cont-integration's avatar cont-integration
Browse files

[skip ci] applied clang format

parent 61561e77
No related branches found
No related tags found
1 merge request!448Draft: Resolve "Implementation of new nodes creation"
Pipeline #20408 skipped
...@@ -25,7 +25,6 @@ ...@@ -25,7 +25,6 @@
namespace wolf namespace wolf
{ {
/** \brief Buffer for arbitrary type objects /** \brief Buffer for arbitrary type objects
* *
* Object and functions to manage a buffer of objects. * Object and functions to manage a buffer of objects.
...@@ -37,8 +36,8 @@ class Buffer ...@@ -37,8 +36,8 @@ class Buffer
typedef typename std::map<TimeStamp, T>::iterator Iterator; // buffer iterator typedef typename std::map<TimeStamp, T>::iterator Iterator; // buffer iterator
typedef typename std::map<TimeStamp, T>::const_iterator ConstIterator; // buffer iterator typedef typename std::map<TimeStamp, T>::const_iterator ConstIterator; // buffer iterator
Buffer() {}; Buffer(){};
~Buffer(void) {}; ~Buffer(void){};
/**\brief Select an element from the buffer /**\brief Select an element from the buffer
* *
......
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
namespace wolf namespace wolf
{ {
void BufferFrame::emplace(FrameBasePtr _frm) void BufferFrame::emplace(FrameBasePtr _frm)
{ {
Buffer<FrameBasePtr>::emplace(_frm->getTimeStamp(), _frm); Buffer<FrameBasePtr>::emplace(_frm->getTimeStamp(), _frm);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment