[clang] 11fdea9 - [clang] NFC: remove trailing whitespaces from clang/test/CXX/temp/temp.decls/temp.class.spec/p6.cpp

Matheus Izvekov via cfe-commits cfe-commits at lists.llvm.org
Tue Apr 8 11:11:06 PDT 2025


Author: Matheus Izvekov
Date: 2025-04-08T15:10:33-03:00
New Revision: 11fdea984dc6777ba4f4b7e516c2938083b34ddb

URL: https://github.com/llvm/llvm-project/commit/11fdea984dc6777ba4f4b7e516c2938083b34ddb
DIFF: https://github.com/llvm/llvm-project/commit/11fdea984dc6777ba4f4b7e516c2938083b34ddb.diff

LOG: [clang] NFC: remove trailing whitespaces from clang/test/CXX/temp/temp.decls/temp.class.spec/p6.cpp

Added: 
    

Modified: 
    clang/test/CXX/temp/temp.decls/temp.class.spec/p6.cpp

Removed: 
    


################################################################################
diff  --git a/clang/test/CXX/temp/temp.decls/temp.class.spec/p6.cpp b/clang/test/CXX/temp/temp.decls/temp.class.spec/p6.cpp
index 871bdc2a58c7b..0f7653c96dcc5 100644
--- a/clang/test/CXX/temp/temp.decls/temp.class.spec/p6.cpp
+++ b/clang/test/CXX/temp/temp.decls/temp.class.spec/p6.cpp
@@ -6,8 +6,8 @@ struct X0 {
   template<typename U> struct Inner0 {
     static const unsigned value = 0;
   };
-  
-  template<typename U> struct Inner0<U*> { 
+
+  template<typename U> struct Inner0<U*> {
     static const unsigned value = 1;
   };
 };
@@ -23,18 +23,18 @@ int array2[X0<int>::Inner0<const int*>::value == 2? 1 : -1];
 
 // Make sure we can provide out-of-line class template partial specializations
 // for member templates (and instantiate them).
-template<class T> struct A { 
+template<class T> struct A {
   struct C {
     template<class T2> struct B;
   };
 };
 
-// partial specialization of A<T>::C::B<T2> 
-template<class T> template<class T2> struct A<T>::C::B<T2*> { }; 
+// partial specialization of A<T>::C::B<T2>
+template<class T> template<class T2> struct A<T>::C::B<T2*> { };
 
 A<short>::C::B<int*> absip;
 
-// Check for conflicts during template instantiation. 
+// Check for conflicts during template instantiation.
 template<typename T, typename U>
 struct Outer {
   template<typename X, typename Y> struct Inner;
@@ -61,12 +61,12 @@ namespace rdar8651930 {
     struct Inner;
 
     template<typename T>
-    struct Inner<T, T> { 
+    struct Inner<T, T> {
       static const bool value = true;
     };
 
     template<typename T, typename U>
-    struct Inner { 
+    struct Inner {
       static const bool value = false;
     };
   };


        


More information about the cfe-commits mailing list