Skip to content

Commit e5ff004

Browse files
committed
style fix, included empty test file to avoid failures
1 parent a4c095a commit e5ff004

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

libc/src/__support/wchar/mbstate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#ifndef LLVM_LIBC_SRC___SUPPORT_MBSTATE_H
1010
#define LLVM_LIBC_SRC___SUPPORT_MBSTATE_H
1111

12-
#include "src/__support/common.h"
1312
#include "hdr/types/char32_t.h"
13+
#include "src/__support/common.h"
1414
#include <stdint.h>
1515

1616
namespace LIBC_NAMESPACE_DECL {
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//===-- Unittests for the CharacterConverter class (utf32 -> 8) -----------===//
2+
//
3+
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
//===----------------------------------------------------------------------===//
8+
9+
#include "src/__support/common.h"
10+
#include "src/__support/wchar/character_converter.h"
11+
#include "src/__support/wchar/mbstate.h"
12+
13+
#include "test/UnitTest/Test.h"
14+
15+
TEST(LlvmLibcCharacterConverterUTF32To8Test, OneByte) {}

0 commit comments

Comments
 (0)