From 1e12f00266782244351e9c363e75bf721b9f9c81 Mon Sep 17 00:00:00 2001 From: eidheim Date: Wed, 15 Jul 2015 15:05:43 +0200 Subject: [PATCH] Removed temporary testing output. --- juci/source.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/juci/source.cc b/juci/source.cc index 60451d9..43fcb18 100644 --- a/juci/source.cc +++ b/juci/source.cc @@ -427,13 +427,14 @@ void Source::ClangView::on_mark_set(const Gtk::TextBuffer::iterator& iterator, c type_tooltips.hide(); diagnostic_tooltips.hide(); + //TODO: For testing purposes if(clang_readable) { for(auto &token: *clang_tokens) { if(token.has_type()) { auto range_data=token.source_range.get_range_data(); auto insert_offset=get_buffer()->get_insert()->get_iter().get_offset(); if(range_data.path==file_path && insert_offset>=range_data.start_offset && insert_offset<=range_data.end_offset) { - cout << token.get_type() << endl; + //cout << token.get_type() << endl; } } }