mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
fix cppcheck warning
This commit is contained in:
parent
827104b9d7
commit
7e3e16d803
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue