From c652f8243a5f8e50584d2a81c8c5714e74a03955 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Thu, 9 Dec 2021 10:49:47 -0800 Subject: [PATCH] Make header guard consistent with header name --- include/fmt/xchar.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/fmt/xchar.h b/include/fmt/xchar.h index a0dd032f..3a5bf209 100644 --- a/include/fmt/xchar.h +++ b/include/fmt/xchar.h @@ -5,8 +5,8 @@ // // For the license information refer to format.h. -#ifndef FMT_WCHAR_H_ -#define FMT_WCHAR_H_ +#ifndef FMT_XCHAR_H_ +#define FMT_XCHAR_H_ #include #include @@ -233,4 +233,4 @@ template inline auto to_wstring(const T& value) -> std::wstring { FMT_MODULE_EXPORT_END FMT_END_NAMESPACE -#endif // FMT_WCHAR_H_ +#endif // FMT_XCHAR_H_