This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
hilbert-os/euler/include/std/fwd/vector.hpp

8 lines
140 B
C++

#pragma once
#include <std/fwd/allocator.hpp>
namespace std {
template <class T, class Allocator = std::allocator<T>>
class vector;
}