From 4035aab49f9d190f1aec748b84397b769f18478a Mon Sep 17 00:00:00 2001 From: daniel-k Date: Tue, 9 Jan 2018 16:28:46 +0100 Subject: [PATCH] lib/ip: dependencies cannot be private Has to be used by derived classes of course! --- fpga/include/villas/fpga/ip.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/fpga/include/villas/fpga/ip.hpp b/fpga/include/villas/fpga/ip.hpp index ae467750f..172cbcb9e 100644 --- a/fpga/include/villas/fpga/ip.hpp +++ b/fpga/include/villas/fpga/ip.hpp @@ -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 irqs; ///< Interrupts of this IP component - -private: std::map dependencies; ///< dependencies on other IPs };