summaryrefslogtreecommitdiffhomepage
path: root/compat/vector-wrapper-fwd.hpp
blob: ae9c80b19c03e50f989318d5648ed7b37663063b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

namespace floormat {

enum class vector_wrapper_repr : uint8_t
{
    invalid,
    ref,
    const_ref,
    value,
};

template<typename T, vector_wrapper_repr> struct vector_wrapper;

} // namespace floormat