aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/arraysize.h
blob: 927fbc73c6a37bbe81a6ed4c8203a4144504363d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace vespalib {

template <typename T, size_t N>
constexpr size_t arraysize(const T (&)[N]) { return N; }

}  // namespace vespalib