Fixed dependants and dependencies include diagram handling
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#pragma once
|
||||
|
||||
namespace clanguml::t40003::dependencies {
|
||||
void t1() {}
|
||||
void t1() { }
|
||||
}
|
||||
@@ -3,5 +3,5 @@
|
||||
#include "t1.h"
|
||||
|
||||
namespace clanguml::t40003::dependencies {
|
||||
void t2() {t1();}
|
||||
void t2() { t1(); }
|
||||
}
|
||||
@@ -3,5 +3,5 @@
|
||||
#include "t2.h"
|
||||
|
||||
namespace clanguml::t40003::dependencies {
|
||||
void t3() {t2();}
|
||||
void t3() { t2(); }
|
||||
}
|
||||
@@ -1,5 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "t1.h"
|
||||
|
||||
namespace clanguml::t40003::dependencies {
|
||||
void t5() { }
|
||||
void t5() { t1(); }
|
||||
}
|
||||
7
tests/t40003/include/dependencies/t6.h
Normal file
7
tests/t40003/include/dependencies/t6.h
Normal file
@@ -0,0 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "t1.h"
|
||||
|
||||
namespace clanguml::t40003::dependencies {
|
||||
void t6() { t1(); }
|
||||
}
|
||||
Reference in New Issue
Block a user