summaryrefslogtreecommitdiffhomepage
path: root/compat/borrowed-ptr-fwd.hpp
blob: 6a3db76328513089084ad6e7d3307269c5616329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

namespace floormat {

struct bptr_base;

template<typename T> class bptr;

template<typename T> bptr(T* ptr) -> bptr<T>;
template<typename T> bptr(const T* ptr) -> bptr<const T>;

} // namespace floormat