mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 15:25:07 +00:00
13 lines
253 B
C++
13 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 {}; }
|
|
|
|
}
|