cgv
Loading...
Searching...
No Matches
make_ref.h
1#pragma once
2
3#include <cgv/type/func/drop_ref.h>
4
5namespace cgv {
6 namespace type {
7 namespace func {
9 template <typename T>
10 struct make_ref
11 {
12 typedef typename drop_ref<T>::type& type;
13 };
14 }
15 }
16}
the cgv namespace
Definition print.h:11
T type
define value type
Definition drop_ref.h:12
ensure the reference modifier for a type without changing the const modifier
Definition make_ref.h:11