Home | History | Annotate | Download | only in PCH

Lines Matching refs:vb

38   template<typename T> extern T vb;
55 template<typename T> T vb = T();
56 template<> constexpr float vb<float> = 1.5;
69 template<typename T> T vb = T(10);
70 template<> extern float vb<float>;
88 template<typename T> T vb = T(100);
104 template<> float vb<float> = 1.5;
105 template int vb<int>;
134 template<> constexpr float vb<float> = 2.5;
135 template const int vb<const int>;
136 static_assert(vb<float> == 2.5, "");
137 static_assert(vb<const int> == 100, "");
149 template<typename T> T* vb<T*> = new T();
150 int* intpb = vb<int*>;
151 static_assert(vb<float> == 1.5, "");
165 template<typename T> extern T vb;
166 int b = vb<int>;