Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:54:06

0001 
0002 //              Copyright Catch2 Authors
0003 // Distributed under the Boost Software License, Version 1.0.
0004 //   (See accompanying file LICENSE.txt or copy at
0005 //        https://www.boost.org/LICENSE_1_0.txt)
0006 
0007 // SPDX-License-Identifier: BSL-1.0
0008 #ifndef CATCH_WINDOWS_H_PROXY_HPP_INCLUDED
0009 #define CATCH_WINDOWS_H_PROXY_HPP_INCLUDED
0010 
0011 #include <catch2/internal/catch_platform.hpp>
0012 
0013 #if defined(CATCH_PLATFORM_WINDOWS)
0014 
0015 // We might end up with the define made globally through the compiler,
0016 // and we don't want to trigger warnings for this
0017 #if !defined(NOMINMAX)
0018 #  define NOMINMAX
0019 #endif
0020 #if !defined(WIN32_LEAN_AND_MEAN)
0021 #  define WIN32_LEAN_AND_MEAN
0022 #endif
0023 
0024 #include <windows.h>
0025 
0026 #endif // defined(CATCH_PLATFORM_WINDOWS)
0027 
0028 #endif // CATCH_WINDOWS_H_PROXY_HPP_INCLUDED