blob: b2c3fc9d7f0269c0702833d93f63cc8dd85412e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "tz.h"
namespace NTi {
namespace {
static constexpr std::initializer_list<const std::string_view> TimezonesInit = {
#include "tz.gen"
};
static constexpr TArrayRef<const std::string_view> Timezones(TimezonesInit);
}
TArrayRef<const std::string_view> GetTimezones() {
return Timezones;
}
}
|