mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-07 20:31:04 +03:00
26 lines
468 B
C++
26 lines
468 B
C++
|
/*
|
||
|
* Copyright (c) 2023, Liav A. <liavalb@hotmail.co.il>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <AK/Error.h>
|
||
|
|
||
|
#ifdef KERNEL
|
||
|
# include <AK/Format.h>
|
||
|
#endif
|
||
|
|
||
|
namespace AK {
|
||
|
|
||
|
Error Error::from_string_view_or_print_error_and_return_errno(StringView string_literal, [[maybe_unused]] int code)
|
||
|
{
|
||
|
#ifdef KERNEL
|
||
|
dmesgln("{}", string_literal);
|
||
|
return Error::from_errno(code);
|
||
|
#else
|
||
|
return Error::from_string_view(string_literal);
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
}
|