cgv
Loading...
Searching...
No Matches
drop_pointer.h
1#pragma once
2
3namespace cgv {
4 namespace type {
5 namespace func {
6
8template <typename T>
10{
12 typedef T type;
13};
15template <typename T>
16struct drop_pointer<T*>
17{
19 typedef T type;
20};
21
22 }
23 }
24}
the cgv namespace
Definition print.h:11
T type
define type without reference
the drop pointer template defines a type that drops one pointer modifier