| Index: tools/clang/plugins/tests/inline_ctor.cpp
|
| diff --git a/tools/clang/plugins/tests/inline_ctor.cpp b/tools/clang/plugins/tests/inline_ctor.cpp
|
| index 6a751fb405072641b9acb62b0e2657a1f54801b1..31f3d0aebcb49597e8df88760afa33ad9cf25758 100644
|
| --- a/tools/clang/plugins/tests/inline_ctor.cpp
|
| +++ b/tools/clang/plugins/tests/inline_ctor.cpp
|
| @@ -18,8 +18,12 @@ class InlineInCPPOK {
|
| std::vector<std::string> two_;
|
| };
|
|
|
| +INLINE_CTORS_IN_A_MACRO(InlineCtorsBehindAMacroAreOKInCpp);
|
| +
|
| int main() {
|
| InlineInCPPOK one;
|
| InlineCtorsArentOKInHeader two;
|
| + InlineCtorsBehindAMacroArentOKInHeader three;
|
| + InlineCtorsBehindAMacroAreOKInCpp four;
|
| return 0;
|
| }
|
|
|