Fixed duplicate dependency relationships

This commit is contained in:
Bartek Kryza
2021-03-18 23:21:06 +01:00
parent 2322833897
commit ce1d94984d
3 changed files with 17 additions and 1 deletions

View File

@@ -33,6 +33,8 @@ public:
// TODO: int get_b(const B &b) { return b.b; }
int get_c(C c) { return c.c; }
int get_d(D &&d) { return d.d; }
// Dependency relationship should be rendered only once
int get_d2(D &&d) { return d.d; }
};
}
}