From d1fdf231c8a47a8e661f9175431ad1063ff01a90 Mon Sep 17 00:00:00 2001 From: Jacob Dufault Date: Tue, 27 Feb 2018 23:08:39 -0800 Subject: [PATCH] Make all call type default in $cquery/callHierarchy --- src/messages/cquery_call_hierarchy.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/messages/cquery_call_hierarchy.cc b/src/messages/cquery_call_hierarchy.cc index 1a8e7c41..905253cb 100644 --- a/src/messages/cquery_call_hierarchy.cc +++ b/src/messages/cquery_call_hierarchy.cc @@ -28,7 +28,7 @@ struct Ipc_CqueryCallHierarchy bool callee = false; // Base: include base functions; All: include both base and derived // functions. - CallType callType = CallType::Direct; + CallType callType = CallType::All; bool detailedName = false; int levels = 1; };