Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 7, 2024
1 parent d06ec58 commit b880665
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/dynamic-graph/process-list.hh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

namespace dynamicgraph {
namespace CPU {
class DYNAMIC_GRAPH_DLLAPI ProcessData {};
class DYNAMIC_GRAPH_DLLAPI ProcessData{};

class DYNAMIC_GRAPH_DLLAPI ProcessList {
public:
Expand Down
4 changes: 3 additions & 1 deletion include/dynamic-graph/signal-ptr.t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,9 @@ template <class T, class Time>
std::ostream &SignalPtr<T, Time>::display(std::ostream &os) const {
dgTDEBUGIN(25) << SignalBase<Time>::name << this << "||" << isPlugged()
<< "||" << signalPtr;
{ Signal<T, Time>::display(os); }
{
Signal<T, Time>::display(os);
}

if ((isPlugged()) && (!autoref())) {
os << " -->-- PLUGGED";
Expand Down

0 comments on commit b880665

Please sign in to comment.