Clang: Remove faulty copy constructor of HighlightingInformationsIterator

The test HighlightingInformations.ForFullTranslationUnitRange crashed on
Windows because of this.

Change-Id: I6dbf1e1ce127fedceccea92afe7c59c1d6a90db7
Reviewed-by: Marco Bubke <marco.bubke@theqtcompany.com>
This commit is contained in:
Nikolai Kosjar
2015-11-26 14:11:39 +01:00
parent e244784ed3
commit eb2457869d

View File

@@ -56,10 +56,6 @@ public:
cxTranslationUnit(cxTranslationUnit)
{}
HighlightingInformationsIterator(const HighlightingInformationsIterator &other)
: cxCursorIterator(other.cxCursorIterator)
{}
HighlightingInformationsIterator& operator++()
{
++cxCursorIterator;