/* === This file is part of Calamares - === * * SPDX-FileCopyrightText: 2024 Adriaan de Groot * SPDX-License-Identifier: GPL-3.0-or-later * * Calamares is Free Software: see the License-Identifier above. * * */ #ifndef CALAMARES_COMPAT_SIZE_H #define CALAMARES_COMPAT_SIZE_H #include namespace Calamares { /* Compatibility of size types (e.g. qsizetype, STL sizes, int) between Qt5 and Qt6 */ using NumberForTr = int; } #endif