/* * Copyright (C) 2018-2021 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once template struct StatickSize3 { operator const size_t *() { static const size_t v[] = {X, Y, Z}; return v; } };