[clang] fe4d5f0 - [clang] NFC: stray space cleanup
Matheus Izvekov via cfe-commits
cfe-commits at lists.llvm.org
Thu May 16 15:57:02 PDT 2024
Author: Matheus Izvekov
Date: 2024-05-16T19:56:45-03:00
New Revision: fe4d5f0d0e457a0a7dec2c7dc87996706b30a25e
URL: https://github.com/llvm/llvm-project/commit/fe4d5f0d0e457a0a7dec2c7dc87996706b30a25e
DIFF: https://github.com/llvm/llvm-project/commit/fe4d5f0d0e457a0a7dec2c7dc87996706b30a25e.diff
LOG: [clang] NFC: stray space cleanup
Added:
Modified:
clang/test/SemaCXX/cxx20-ctad-type-alias.cpp
Removed:
################################################################################
diff --git a/clang/test/SemaCXX/cxx20-ctad-type-alias.cpp b/clang/test/SemaCXX/cxx20-ctad-type-alias.cpp
index 70e81cd79fd67..285532e3d80dd 100644
--- a/clang/test/SemaCXX/cxx20-ctad-type-alias.cpp
+++ b/clang/test/SemaCXX/cxx20-ctad-type-alias.cpp
@@ -74,7 +74,7 @@ struct Foo {
template <typename T>
using AF = Foo<T, 1>;
-AF b{0};
+AF b{0};
} // namespace test6
namespace test7 {
@@ -86,8 +86,8 @@ struct Foo {
template <typename U>
using AF1 = Foo<U>;
template <typename K>
-using AF2 = AF1<K>;
-AF2 b = 1;
+using AF2 = AF1<K>;
+AF2 b = 1;
} // namespace test7
namespace test8 {
@@ -149,7 +149,7 @@ namespace test12 {
template<typename X>
struct Foo {
template<typename K>
- struct Bar {
+ struct Bar {
Bar(K);
};
More information about the cfe-commits
mailing list