mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-26 16:47:40 +01:00
14 lines
197 B
C++
14 lines
197 B
C++
|
//
|
||
|
// pure_virtual.cpp
|
||
|
// CloverX64
|
||
|
//
|
||
|
// Created by Jief on 24/08/2020.
|
||
|
//
|
||
|
|
||
|
#include "../Platform/Platform.h"
|
||
|
|
||
|
extern "C" void __cxa_pure_virtual()
|
||
|
{
|
||
|
panic("Pure virtual function called");
|
||
|
}
|