最終更新日時(UTC):
が更新

履歴 編集

function
<stacktrace>

std::basic_stacktrace::max_size(C++23)

allocator_type get_allocator() const noexcept; // (1) C++23

概要

アロケータオブジェクトを取得する。

戻り値

コンストラクタで設定され、保持しているアロケータオブジェクトを返す。

#include <cassert>
#include <stacktrace>

int main() {
  std::allocator<std::stacktrace_entry> alloc{};
  std::stacktrace trace{alloc};

  assert(trace.get_allocator() == alloc);
}

出力

バージョン

言語

  • C++23

処理系