aboutsummaryrefslogtreecommitdiffstats
path: root/vdslib/src/vespa/vdslib/defs.h
blob: 0832fa359879ce908d135b422058b0bf76154748 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. 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;

}