Skip to content

Commit

Permalink
Restyle
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 committed Feb 14, 2024
1 parent d9d6938 commit ad23745
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/support/Pool.h
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ class BitmapActiveObjectIterator
{
public:
using value_type = T;
using pointer = T*;
using reference = T&;
using pointer = T *;
using reference = T &;

explicit BitmapActiveObjectIterator(internal::StaticAllocatorBitmap * pool, size_t idx) : mPool(pool), mIndex(idx) {}
BitmapActiveObjectIterator() {}
Expand Down Expand Up @@ -400,8 +400,8 @@ class HeapObjectPool : public internal::Statistics, public HeapObjectPoolExitHan
{
public:
using value_type = T;
using pointer = T*;
using reference = T&;
using pointer = T *;
using reference = T &;

ActiveObjectIterator() {}
ActiveObjectIterator(const ActiveObjectIterator & other) : mCurrent(other.mCurrent), mEnd(other.mEnd)
Expand Down

0 comments on commit ad23745

Please sign in to comment.