| Index: tools/clang/plugins/tests/missing_ctor_dllexport.cpp
|
| diff --git a/tools/clang/plugins/tests/missing_ctor.cpp b/tools/clang/plugins/tests/missing_ctor_dllexport.cpp
|
| similarity index 75%
|
| copy from tools/clang/plugins/tests/missing_ctor.cpp
|
| copy to tools/clang/plugins/tests/missing_ctor_dllexport.cpp
|
| index 8ee2fb2ac87ab898b1e38a33c703affab92a25db..b779d19490025fdf96734757ab00ac0d0443e547 100644
|
| --- a/tools/clang/plugins/tests/missing_ctor.cpp
|
| +++ b/tools/clang/plugins/tests/missing_ctor_dllexport.cpp
|
| @@ -2,18 +2,15 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "missing_ctor.h"
|
| -
|
| -#include <string>
|
| -#include <vector>
|
| +#include "missing_ctor_dllexport.h"
|
|
|
| // We don't warn on classes that use default ctors in cpp files.
|
| class MissingInCPPOK {
|
| public:
|
|
|
| private:
|
| - std::vector<int> one_;
|
| - std::vector<std::string> two_;
|
| + MyVector<int> one_;
|
| + MyVector<MyString> two_;
|
| };
|
|
|
| int main() {
|
|
|