mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
14 lines
253 B
C++
14 lines
253 B
C++
|
|
/*
|
||
|
|
* Copyright (c) 2022, Tim Flynn <trflynn89@pm.me>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <LibTimeZone/TimeZone.h>
|
||
|
|
|
||
|
|
namespace TimeZone {
|
||
|
|
|
||
|
|
Optional<TimeZone> __attribute__((weak)) time_zone_from_string(StringView) { return {}; }
|
||
|
|
|
||
|
|
}
|