mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-28 13:43:45 +03:00
AK: Remove unused AK::not_implemented()
Whatever this was supposed to be, it was ironically... not implemented.
This commit is contained in:
parent
14dc323f4d
commit
e33bbdb6ba
Notes:
sideshowbarker
2024-07-19 11:21:07 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/e33bbdb6ba8
@ -15,10 +15,3 @@
|
||||
|
||||
#endif
|
||||
|
||||
namespace AK {
|
||||
|
||||
inline void not_implemented() { ASSERT(false); }
|
||||
|
||||
}
|
||||
|
||||
using AK::not_implemented;
|
||||
|
@ -310,11 +310,11 @@ void VirtualConsole::escape$J(const Vector<unsigned>& params)
|
||||
switch (mode) {
|
||||
case 0:
|
||||
// FIXME: Clear from cursor to end of screen.
|
||||
not_implemented();
|
||||
ASSERT_NOT_REACHED();
|
||||
break;
|
||||
case 1:
|
||||
// FIXME: Clear from cursor to beginning of screen.
|
||||
not_implemented();
|
||||
ASSERT_NOT_REACHED();
|
||||
break;
|
||||
case 2:
|
||||
clear();
|
||||
|
Loading…
Reference in New Issue
Block a user