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

[skip ci] applied clang format

parent 3de00b4e
No related branches found
No related tags found
1 merge request!448Draft: Resolve "Implementation of new nodes creation"
Pipeline #20418 skipped
......@@ -135,10 +135,10 @@ class ProcessorBase : public NodeBase, public std::enable_shared_from_this<Proce
ProfilingUnit profiling_capture_, profiling_kf_;
public:
void startCaptureProfiling();
void stopCaptureProfiling();
void startKFProfiling();
void stopKFProfiling();
void startCaptureProfiling();
void stopCaptureProfiling();
void startKFProfiling();
void stopKFProfiling();
virtual void printProfiling(std::ostream& stream = std::cout) const;
/** \brief constructor
......
......@@ -189,7 +189,7 @@ class ProcessorTracker : public ProcessorBase
* - initializing counters, flags, or any derived variables
* - initializing algorithms needed for processing the derived data
*/
virtual void preProcess() {};
virtual void preProcess(){};
/** Post-process
*
......@@ -201,7 +201,7 @@ class ProcessorTracker : public ProcessorBase
* - resetting and/or clearing variables and/or algorithms at the end of processing
* - drawing / printing / logging the results of the processing
*/
virtual void postProcess() {};
virtual void postProcess(){};
/** \brief Tracker function
* \return The number of successful tracks.
......@@ -387,7 +387,7 @@ inline unsigned int ProcessorTracker::processNewProfiling(const int& _max_featur
process_new_profiling_.startProfiling();
auto result = processNew(_max_features);
process_new_profiling_.stopProfiling();
return result;
}
......
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