Cleanup precompiler directives

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2024-08-21 13:32:58 +02:00
parent d9eb8292a9
commit e65eb35cc2
2 changed files with 3 additions and 3 deletions

View File

@ -5,9 +5,9 @@
#pragma once
#if defined(_WIN32)
#ifdef _WIN32
#include <CppUnitTest.h>
#elif defined(__APPLE__)
#else
#include <stdexcept>
#define TEST_CLASS(name) class name

View File

@ -14,7 +14,7 @@
#include <stdint.h>
#include <stdio.h>
#include <time.h>
#if defined(__APPLE__)
#ifdef __APPLE__
#include <xlocale.h>
#endif
#include <algorithm>