Skip to content

Commit

Permalink
Merge pull request #35 from LLNL/bugfix/overrides
Browse files Browse the repository at this point in the history
Add further override declarations to DynamicPool
  • Loading branch information
davidbeckingsale authored Dec 10, 2018
2 parents 37beaa6 + 36948e2 commit 9a968cc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/umpire/strategy/DynamicPool.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@ class DynamicPool :
const std::size_t min_initial_alloc_size = (512 * 1024 * 1024),
const std::size_t min_alloc_size = (1 * 1024 *1024)) noexcept;

void* allocate(size_t bytes);
void* allocate(size_t bytes) override;

void deallocate(void* ptr);
void deallocate(void* ptr) override;

void release() override;

long getCurrentSize() noexcept;
long getHighWatermark() noexcept;
long getActualSize() noexcept;
long getCurrentSize() noexcept override;
long getHighWatermark() noexcept override;
long getActualSize() noexcept override;

Platform getPlatform() noexcept;
Platform getPlatform() noexcept override;

void coalesce() noexcept;

Expand Down

0 comments on commit 9a968cc

Please sign in to comment.