Skip to content

Commit 347e486

Browse files
committed
[FOLD] revert whitespace-only changes
1 parent 9725364 commit 347e486

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

clang/test/CXX/drs/cwg3xx.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ namespace cwg329 { // cwg329: 3.5
443443
// expected-note@#cwg329-b {{in instantiation of template class 'cwg329::A<char>' requested here}}
444444
// expected-note@#cwg329-i {{previous definition is here}}
445445
};
446-
A<int> a;
446+
A<int> a;
447447
A<char> b; // #cwg329-b
448448

449449
void test() {
@@ -684,9 +684,9 @@ namespace cwg341 { // cwg341: sup 1708
684684
namespace B {
685685
extern "C" int &cwg341_a = cwg341_a;
686686
// expected-error@-1 {{redefinition of 'cwg341_a'}}
687-
// expected-note@#cwg341_a {{previous definition is here}}
687+
// expected-note@#cwg341_a {{previous definition is here}}
688688
}
689-
extern "C" void cwg341_b(); // #cwg341_b
689+
extern "C" void cwg341_b(); // #cwg341_b
690690
}
691691
int cwg341_a;
692692
// expected-error@-1 {{declaration of 'cwg341_a' in global scope conflicts with declaration with C language linkage}}
@@ -704,7 +704,7 @@ namespace cwg341 {
704704
// expected-error@-1 {{declaration of 'cwg341_d' with C language linkage conflicts with declaration in global scope}}
705705
// expected-note@#cwg341_d {{declared in global scope here}}
706706

707-
namespace A { extern "C" int cwg341_e; } // #cwg341_e
707+
namespace A { extern "C" int cwg341_e; } // #cwg341_e
708708
namespace B { extern "C" void cwg341_e(); }
709709
// expected-error@-1 {{redefinition of 'cwg341_e' as different kind of symbol}}
710710
// expected-note@#cwg341_e {{previous definition is here}}
@@ -1106,7 +1106,7 @@ namespace cwg364 { // cwg364: yes
11061106
}
11071107

11081108
// cwg366: yes
1109-
#if "foo" // expected-error {{invalid token at start of a preprocessor expression}}
1109+
#if "foo" // expected-error {{invalid token at start of a preprocessor expression}}
11101110
#endif
11111111

11121112
namespace cwg367 { // cwg367: yes

clang/test/CXX/drs/cwg4xx.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace cwg400 { // cwg400: yes
2020
struct A { int a; struct a {}; }; // #cwg400-A
2121
struct B { int a; struct a {}; }; // #cwg400-B
2222
struct C : A, B { using A::a; struct a b; };
23-
struct D : A, B {
23+
struct D : A, B {
2424
using A::a;
2525
// FIXME: we should issue a single diagnostic
2626
using B::a; // #cwg400-using-B-a

0 commit comments

Comments
 (0)