From 560af2961abc9c17e2823401bfa84c434937058d Mon Sep 17 00:00:00 2001 From: Pascal Bauer Date: Thu, 30 Jan 2025 13:44:24 +0100 Subject: [PATCH] Change accessibility of getMemoryBlocks() method of core to public. Signed-off-by: Pascal Bauer --- fpga/include/villas/fpga/core.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fpga/include/villas/fpga/core.hpp b/fpga/include/villas/fpga/core.hpp index 104295b86..95ef39143 100644 --- a/fpga/include/villas/fpga/core.hpp +++ b/fpga/include/villas/fpga/core.hpp @@ -103,13 +103,13 @@ protected: // Key-type for accessing maps addressTranslations and slaveAddressSpaces using MemoryBlockName = std::string; - // Each IP can declare via this function which memory blocks it requires - virtual std::list getMemoryBlocks() const { return {}; } - public: size_t getBaseaddr() const { return baseaddr; } const std::string &getInstanceName() const { return id.getName(); } + // Each IP can declare via this function which memory blocks it requires + virtual std::list getMemoryBlocks() const { return {}; } + // Operators bool operator==(const Vlnv &otherVlnv) const {