From 0e5e2a6ca5d83b989df0d2970209b8c24541b257 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Wed, 10 Jan 2018 00:21:55 -0800 Subject: [PATCH] Fix build --- src/command_line.cc | 2 ++ src/indexer.cc | 1 + src/indexer.h | 2 -- src/messages/cquery_call_tree.cc | 4 +++- src/messages/initialize.cc | 2 ++ 5 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/command_line.cc b/src/command_line.cc index ab6c45c1..a53aca57 100644 --- a/src/command_line.cc +++ b/src/command_line.cc @@ -480,6 +480,8 @@ Command line options: --language-server Run as a language server. This implements the language server spec over STDIN and STDOUT. + --init + Override user provided initialization options. --test-unit Run unit tests. --test-index Run index tests. opt_filter_path can be used to specify which diff --git a/src/indexer.cc b/src/indexer.cc index 81894292..32332e1d 100644 --- a/src/indexer.cc +++ b/src/indexer.cc @@ -12,6 +12,7 @@ #include #include #include +#include // TODO: See if we can use clang_indexLoc_getFileLocation to get a type ref on // |Foobar| in DISALLOW_COPY(Foobar) diff --git a/src/indexer.h b/src/indexer.h index 13547e16..d5fea6f7 100644 --- a/src/indexer.h +++ b/src/indexer.h @@ -19,8 +19,6 @@ #include #include #include -#include -#include #include #include diff --git a/src/messages/cquery_call_tree.cc b/src/messages/cquery_call_tree.cc index 3b3dfbb1..679982f0 100644 --- a/src/messages/cquery_call_tree.cc +++ b/src/messages/cquery_call_tree.cc @@ -2,6 +2,8 @@ #include "query_utils.h" #include "queue_manager.h" +#include + namespace { struct Ipc_CqueryCallTreeInitial : public IpcMessage { @@ -100,7 +102,7 @@ std::vector BuildExpandCallTree( // TODO: REMOVE |seen_locations| once we fix the querydb update bugs // TODO: basically, querydb gets duplicate references inserted into it. if (!seen_locations.insert(caller.loc).second) { - std::cerr << "!!!! FIXME DUPLICATE REFERENCE IN QUERYDB" << std::endl; + LOG_S(ERROR) << "!!!! FIXME DUPLICATE REFERENCE IN QUERYDB" << std::endl; return; } diff --git a/src/messages/initialize.cc b/src/messages/initialize.cc index 95c5e1e1..f0ff3d4b 100644 --- a/src/messages/initialize.cc +++ b/src/messages/initialize.cc @@ -10,6 +10,8 @@ #include +#include + // TODO Cleanup global variables extern std::string g_init_options; extern int g_enable_comments;