brintos

brintos / llvm-project-archived public Read only

0
0
Text · 202 B · 92815e9 Raw
14 lines · c
1#ifndef SECONDHEADER2#define SECONDHEADER3 4#include "vector"5 6template <class T>7struct Address {};8 9template <>10struct Address<std::vector<bool>>11    : Address<std::vector<bool>::iterator> {};12 13#endif14