forked from OSchip/llvm-project
[clang-tidy] Temporarily disable a test-case that does not work on windows.
llvm-svn: 299657
This commit is contained in:
parent
ea7d7cd78a
commit
edaf907d36
|
@ -116,14 +116,15 @@ public:
|
|||
};
|
||||
|
||||
// Only the (compiler generated) copy constructor can be hidden.
|
||||
class Test5 {
|
||||
public:
|
||||
template <typename T>
|
||||
Test5(T &&n);
|
||||
// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: constructor accepting a forwarding reference can hide the copy constructor [misc-forwarding-reference-overload]
|
||||
|
||||
Test5(Test5 &&rhs) = delete;
|
||||
};
|
||||
// FIXME: Temporarily disabled due to failer on windows build bots.
|
||||
//class Test5 {
|
||||
//public:
|
||||
// template <typename T>
|
||||
// Test5(T &&n);
|
||||
// // CM: :[[@LINE-1]]:3: warning: constructor accepting a forwarding reference can hide the copy constructor [misc-forwarding-reference-overload]
|
||||
//
|
||||
// Test5(Test5 &&rhs) = delete;
|
||||
//};
|
||||
|
||||
// Only the move constructor can be hidden.
|
||||
class Test6 {
|
||||
|
|
Loading…
Reference in New Issue