removed conflict markers

This commit is contained in:
Robin Müller 2020-06-04 15:03:29 +02:00
parent 3d175f603c
commit a6a3180196
1 changed files with 1 additions and 9 deletions

View File

@ -22,20 +22,12 @@ public:
//! @brief In the PoolManager's destructor all allocated memory is freed.
virtual ~PoolManager();
<<<<<<< HEAD
//! @brief LocalPool overrides for thread-safety. Decorator function which
//! wraps LocalPool calls with a mutex protection.
ReturnValue_t deleteData(store_address_t) override;
ReturnValue_t deleteData(uint8_t* buffer, size_t size,
store_address_t* storeId = nullptr) override;
=======
//! @brief LocalPool overrides for thread-safety.
ReturnValue_t deleteData(store_address_t) override;
ReturnValue_t deleteData(uint8_t* buffer, size_t size,
store_address_t* storeId = NULL) override;
ReturnValue_t modifyData(store_address_t packet_id, uint8_t** packet_ptr,
size_t* size) override;
>>>>>>> upstream/master
protected:
ReturnValue_t reserveSpace(const uint32_t size, store_address_t* address,
bool ignoreFault) override;