language_provider: quiten compiler if no LIBCLANG

Test Plan: Build, see the warnings dissapear

Reviewers: ajwillia.ms

Reviewed By: ajwillia.ms

Differential Revision: https://phab.enlightenment.org/D4884
This commit is contained in:
Al Poole 2017-05-15 21:08:20 +01:00 committed by Andy Williams
parent 3296f9fdd2
commit 493145b8e4
1 changed files with 11 additions and 0 deletions

View File

@ -123,6 +123,8 @@ _edi_language_c_add(Edi_Editor *editor)
{
#if HAVE_LIBCLANG
_clang_autosuggest_setup(editor);
#else
(void) editor;
#endif
}
@ -132,6 +134,8 @@ _edi_language_c_refresh(Edi_Editor *editor)
#if HAVE_LIBCLANG
_clang_autosuggest_dispose(editor);
_clang_autosuggest_setup(editor);
#else
(void) editor;
#endif
}
@ -140,6 +144,8 @@ _edi_language_c_del(Edi_Editor *editor)
{
#if HAVE_LIBCLANG
_clang_autosuggest_dispose(editor);
#else
(void) editor;
#endif
}
@ -288,6 +294,8 @@ _edi_language_c_lookup(Edi_Editor *editor, unsigned int row, unsigned int col)
list = eina_list_append(list, suggest_it);
}
clang_disposeCodeCompleteResults(res);
#else
(void) editor; (void) row; (void) col;
#endif
return list;
@ -500,7 +508,10 @@ _edi_language_c_lookup_doc(Edi_Editor *editor, unsigned int row, unsigned int co
_edi_doc_dump(doc, comment, doc->detail);
_edi_doc_title_get(cursor, doc->title);
_edi_doc_trim(doc->detail);
#else
(void) editor; (void) row; (void) col;
#endif
return doc;
}