aboutsummaryrefslogtreecommitdiffstats
path: root/vdslib/src/vespa/vdslib/defs.h
blob: 28e606555d4be9deab0b320177b1da1e0cb1ae91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <cstdint>

namespace vdslib {

using Timestamp = uint64_t;
const Timestamp MAX_TIMESTAMP = (Timestamp)-1ll;

}