Tokenizer (No tests)

This commit is contained in:
IlushaShurupov 2023-07-15 18:58:31 +03:00 committed by Ilya Shurupov
parent f676e84521
commit 6248c294b8
4 changed files with 31 additions and 26 deletions

View file

@ -24,7 +24,7 @@ namespace tp {
template <typename T1, typename T2>
class Pair {
public:
Pair() {}
Pair() = default;
Pair(T1 t1, T2 t2) : head(t1), tail(t2) {}
union { T1 t1; T1 head; T1 x; };
union { T2 t2; T2 tail; T2 y; };