diff options
author | Orgad Shaneh <orgads@gmail.com> | 2015-01-06 09:58:31 +0100 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2015-01-06 10:02:12 +0100 |
commit | 9180555f260de05b2cb87ca6ff0586be63fff573 (patch) | |
tree | 8371bcb8cd8446b18c200b5b07d556b24823f403 /src/plugins/cpptools/cppcompletion_test.cpp | |
parent | 13c57348ac1a26a1d2df56e8fdd84a7f267beefb (diff) | |
download | qt-creator-9180555f260de05b2cb87ca6ff0586be63fff573.tar.gz |
Revert "C++: Fix completion for enum inside member functions"
Breaks loading of qtcreator project.
This reverts commit 4c6ad5e3055cc4028920828ccad428dca4329766.
Change-Id: I7c4cdaf57eed16d7643d05b9456e03d5120259b3
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
Diffstat (limited to 'src/plugins/cpptools/cppcompletion_test.cpp')
-rw-r--r-- | src/plugins/cpptools/cppcompletion_test.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/cpptools/cppcompletion_test.cpp b/src/plugins/cpptools/cppcompletion_test.cpp index 81b057cd48..a676a5efec 100644 --- a/src/plugins/cpptools/cppcompletion_test.cpp +++ b/src/plugins/cpptools/cppcompletion_test.cpp @@ -313,6 +313,9 @@ void CppToolsPlugin::test_completion() QEXPECT_FAIL("enum_in_function_in_struct_in_function", "QTCREATORBUG-13757", Abort); QEXPECT_FAIL("enum_in_function_in_struct_in_function_cxx11", "QTCREATORBUG-13757", Abort); QEXPECT_FAIL("enum_in_function_in_struct_in_function_anon", "QTCREATORBUG-13757", Abort); + QEXPECT_FAIL("enum_inside_member_function", "QTCREATORBUG-13757", Abort); + QEXPECT_FAIL("enum_inside_member_function_cxx11", "QTCREATORBUG-13757", Abort); + QEXPECT_FAIL("enum_inside_member_function_anon", "QTCREATORBUG-13757", Abort); QEXPECT_FAIL("enum_in_class_accessed_in_member_func_cxx11", "QTCREATORBUG-13757", Abort); QEXPECT_FAIL("enum_in_class_accessed_in_member_func_inline_cxx11", "QTCREATORBUG-13757", Abort); QCOMPARE(actualCompletions, expectedCompletions); |