14 lines
212 B
C++
14 lines
212 B
C++
// SPDX-FileCopyrightText: 2023 Tobias Schmidl
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
#if 0
|
|
#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
|
|
|
|
#include <doctest/doctest.h>
|
|
#endif
|
|
|
|
int
|
|
main()
|
|
{
|
|
return 0;
|
|
}
|