mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-27 04:36:18 +00:00
Delete Externals/soundtouch/assert.h
This commit is contained in:
parent
22a5a3859f
commit
774f7c647a
2 changed files with 0 additions and 42 deletions
41
Externals/soundtouch/assert.h
vendored
41
Externals/soundtouch/assert.h
vendored
|
@ -1,41 +0,0 @@
|
|||
//
|
||||
// assert.h
|
||||
//
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//
|
||||
// Defines the assert macro and related functionality.
|
||||
//
|
||||
#if defined _VCRT_BUILD && !defined _ASSERT_OK
|
||||
#error assert.h not for CRT internal use
|
||||
#endif
|
||||
|
||||
#include <corecrt.h>
|
||||
|
||||
_CRT_BEGIN_C_HEADER
|
||||
|
||||
|
||||
|
||||
#undef assert
|
||||
|
||||
#ifdef NDEBUG
|
||||
|
||||
#define assert(expression) ((void)0)
|
||||
|
||||
#else
|
||||
|
||||
_ACRTIMP void __cdecl _wassert(
|
||||
_In_z_ wchar_t const* _Message,
|
||||
_In_z_ wchar_t const* _File,
|
||||
_In_ unsigned _Line
|
||||
);
|
||||
|
||||
#define assert(expression) (void)( \
|
||||
(!!(expression)) || \
|
||||
(_wassert(_CRT_WIDE(#expression), _CRT_WIDE(__FILE__), (unsigned)(__LINE__)), 0) \
|
||||
)
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
_CRT_END_C_HEADER
|
|
@ -564,7 +564,6 @@ endif()
|
|||
|
||||
target_include_directories(core PUBLIC
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../Core
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../Common
|
||||
)
|
||||
target_link_libraries(core
|
||||
PUBLIC
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue