Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ACS
Public
VILLASframework
VILLAScommon
Commits
74d5ca76
Commit
74d5ca76
authored
Mar 17, 2021
by
Steffen Vogel
🎅🏼
Browse files
fix cppcheck warning
parent
37e4c523
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/villas/graph/directed.hpp
View file @
74d5ca76
...
...
@@ -50,10 +50,10 @@ public:
using
Path
=
std
::
list
<
EdgeIdentifier
>
;
DirectedGraph
(
const
std
::
string
&
name
=
"DirectedGraph"
)
:
lastVertexId
(
0
),
lastEdgeId
(
0
)
{
logger
=
logging
.
get
(
name
)
;
}
lastVertexId
(
0
),
lastEdgeId
(
0
),
logger
(
logging
.
get
(
name
)
)
{
}
std
::
shared_ptr
<
VertexType
>
getVertex
(
VertexIdentifier
vertexId
)
const
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment