diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-11 15:48:21 +0200 |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-08-11 15:48:40 +0200 |
commit | 2ebaf3fe5b015b05e5acdabc0c12458b5f509832 (patch) | |
tree | f7ded65e5aa07654c11ff97a71ce3bba52847b3e /src/plugins/cpptools/cppcodecompletion.cpp | |
parent | f34fd810d5a1f48c935e459e42e273f0e6102558 (diff) | |
download | qt-creator-2ebaf3fe5b015b05e5acdabc0c12458b5f509832.tar.gz |
Get rid of the #warning directives.
Diffstat (limited to 'src/plugins/cpptools/cppcodecompletion.cpp')
-rw-r--r-- | src/plugins/cpptools/cppcodecompletion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/cppcodecompletion.cpp b/src/plugins/cpptools/cppcodecompletion.cpp index a3f328f085..98e39ee8b2 100644 --- a/src/plugins/cpptools/cppcodecompletion.cpp +++ b/src/plugins/cpptools/cppcodecompletion.cpp @@ -1852,7 +1852,7 @@ void CppCodeCompletion::complete(const TextEditor::CompletionItem &item, QChar t if (! function->hasReturnType() && (function->identity() && !function->identity()->isDestructorNameId())) { // Don't insert any magic, since the user might have just wanted to select the class -#warning robe: "don't insert matching ( when the selected symbol is a template" + /// ### port me #if 0 } else if (function->templateParameterCount() != 0 && typedChar != QLatin1Char('(')) { // If there are no arguments, then we need the template specification |