Skip to content

Commit af2a32d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 8a17e92 commit af2a32d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

include/dynamic-graph/process-list.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
namespace dynamicgraph {
1717
namespace CPU {
18-
class DYNAMIC_GRAPH_DLLAPI ProcessData {};
18+
class DYNAMIC_GRAPH_DLLAPI ProcessData{};
1919

2020
class DYNAMIC_GRAPH_DLLAPI ProcessList {
2121
public:

include/dynamic-graph/signal-ptr.t.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,9 @@ template <class T, class Time>
122122
std::ostream &SignalPtr<T, Time>::display(std::ostream &os) const {
123123
dgTDEBUGIN(25) << SignalBase<Time>::name << this << "||" << isPlugged()
124124
<< "||" << signalPtr;
125-
{ Signal<T, Time>::display(os); }
125+
{
126+
Signal<T, Time>::display(os);
127+
}
126128

127129
if ((isPlugged()) && (!autoref())) {
128130
os << " -->-- PLUGGED";

0 commit comments

Comments
 (0)