brintos

brintos / llvm-project-archived public Read only

0
0
Text · 233 B · 769962e Raw
12 lines · c
1#ifndef T_H2#define T_H3 4template <typename ValueType> struct VarStreamArray;5 6template <typename ValueType> struct VarStreamArrayIterator {7  VarStreamArrayIterator(VarStreamArray<ValueType>) {}8  bool HasError{};9};10 11#endif // T_H12