24 lines
446 B
C++
24 lines
446 B
C++
/** @file AllocIterator.hpp
|
|
*
|
|
* @author Roland Conybeare, Dec 2025
|
|
**/
|
|
|
|
#pragma once
|
|
|
|
namespace xo {
|
|
namespace mm {
|
|
|
|
/** @class AllocIterator
|
|
* @brief iterator over arena allocations.
|
|
*
|
|
* Intended for instrumentation/diagnostics.
|
|
* Not needed for normal operator
|
|
**/
|
|
struct AllocIterator {
|
|
|
|
};
|
|
|
|
} /*namespace mm*/
|
|
} /*namespace xo*/
|
|
|
|
/* end AllocIterator.hpp */
|