blob: eecf9173868de635e7fe9ab4faaeb2fcdc97c0b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <util/system/types.h>
namespace NYql {
struct TPositionHandle {
friend struct TExprContext;
private:
ui32 Handle_ = 0; // 0 is guaranteed to represent default-constructed TPosition
};
}
|