| // Copyright 2024 The Fuchsia Authors | |
| // | |
| // Use of this source code is governed by a MIT-style | |
| // license that can be found in the LICENSE file or at | |
| // https://opensource.org/licenses/MIT | |
| #pragma once | |
| #include_next <version> | |
| // We want to be able to implement specialization for std::formatter in common libraries for kernel | |
| // and userspace. By undefing it here, we allow those libraries to avoid exposing that code to the | |
| // kernel where it's not supported. | |
| #undef __cpp_lib_format |