summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/tools/qhashseed/tst_qhashseed_helper.cpp
blob: 57ecf09575a51aa2fc131870c675928366dac2b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2021 Intel Corporation.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include <qhashfunctions.h>
#include <stdio.h>

int main()
{
    // appless:
    QHashSeed seed1 = QHashSeed::globalSeed();
    QHashSeed seed2 = QHashSeed::globalSeed();
    printf("%zu\n%zu\n", size_t(seed1), size_t(seed2));
    return 0;
}