1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

lib/ip: dependencies cannot be private

Has to be used by derived classes of course!
This commit is contained in:
daniel-k 2018-01-09 16:28:46 +01:00
parent e96b08c53c
commit 4035aab49f

View file

@ -128,8 +128,6 @@ protected:
IpIdentifier id; ///< VLNV and name defined in JSON config
uintptr_t baseaddr; ///< The baseadress of this IP component
std::map<int, IrqPort> irqs; ///< Interrupts of this IP component
private:
std::map<std::string, IpCore*> dependencies; ///< dependencies on other IPs
};