From eb2457869d2c2b44fcbf6665c5fef9188ac8b240 Mon Sep 17 00:00:00 2001 From: Nikolai Kosjar Date: Thu, 26 Nov 2015 14:11:39 +0100 Subject: [PATCH] Clang: Remove faulty copy constructor of HighlightingInformationsIterator The test HighlightingInformations.ForFullTranslationUnitRange crashed on Windows because of this. Change-Id: I6dbf1e1ce127fedceccea92afe7c59c1d6a90db7 Reviewed-by: Marco Bubke --- .../clangbackend/ipcsource/highlightinginformationsiterator.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/tools/clangbackend/ipcsource/highlightinginformationsiterator.h b/src/tools/clangbackend/ipcsource/highlightinginformationsiterator.h index 53f540970e6..ae868569bf1 100644 --- a/src/tools/clangbackend/ipcsource/highlightinginformationsiterator.h +++ b/src/tools/clangbackend/ipcsource/highlightinginformationsiterator.h @@ -56,10 +56,6 @@ public: cxTranslationUnit(cxTranslationUnit) {} - HighlightingInformationsIterator(const HighlightingInformationsIterator &other) - : cxCursorIterator(other.cxCursorIterator) - {} - HighlightingInformationsIterator& operator++() { ++cxCursorIterator;