includes/std: Added std::unimplemented()

This commit is contained in:
WerWolv
2024-07-02 18:00:52 +02:00
parent d7811ff5e9
commit 8bdcd814a9

View File

@@ -49,4 +49,11 @@ namespace auto std {
return builtin::std::sizeof_pack(pack);
};
/**
Throws an error notifying the developer that the current codepath is not implemented currently.
*/
fn unimplemented() {
std::error("Unimplemented code path reached!");
};
}