3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-22 16:45:32 +00:00

Fix all warnings that occurred when compiling with gcc9

This commit is contained in:
Kristoffer Ellersgaard Koch 2019-05-05 10:00:27 +02:00
parent a01386c0e4
commit 30c762d3a1
5 changed files with 9 additions and 5 deletions

View file

@ -94,6 +94,7 @@ public:
};
template<class T, class _Size>
void vec<T,_Size>::capacity(Size min_cap) {
if (cap >= min_cap) return;