mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 05:00:27 +00:00
13 lines
311 B
C++
13 lines
311 B
C++
/*
|
|
* PROJECT: ReactOS C++ runtime library
|
|
* LICENSE: MIT (https://spdx.org/licenses/MIT)
|
|
* PURPOSE: __cxa_pure_virtual implementation
|
|
* COPYRIGHT: Copyright 2024 Timo Kreuzer <timo.kreuzer@reactos.org>
|
|
*/
|
|
|
|
#include <intrin.h>
|
|
|
|
extern "C" void __cxa_pure_virtual(void)
|
|
{
|
|
__debugbreak();
|
|
}
|