Skip to content
This repository has been archived by the owner on Jul 30, 2020. It is now read-only.

Commit

Permalink
Remove cquery_member_hierarchy
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobdufault committed Jul 27, 2018
1 parent c9b2933 commit 04609a5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 265 deletions.
5 changes: 2 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ option(SYSTEM_CLANG "Use system installation of Clang instead of \
downloading Clang" OFF)
option(ASAN "Compile with address sanitizers" OFF)
option(ASSERTS "Compile with asserts enabled" OFF)
option(CI "Add -Werror or equivalent" OFF)
option(CI "Add -Werror or equivalent" OFF)

# Sources for the executable are specified at end of CMakeLists.txt
add_executable(cquery "")
Expand Down Expand Up @@ -52,7 +52,7 @@ if(MSVC)
/wd4800
/wd4068 # Disable unknown pragma warning
$<$<CONFIG:Debug>:/FS>
$<$<BOOL:${CI}>:/WX>
$<$<BOOL:${CI}>:/WX>
)
else()
# Common GCC/Clang(Linux) options
Expand Down Expand Up @@ -325,7 +325,6 @@ target_sources(cquery PRIVATE
src/messages/cquery_freshen_index.cc
src/messages/cquery_index_file.cc
src/messages/cquery_inheritance_hierarchy.cc
src/messages/cquery_member_hierarchy.cc
src/messages/cquery_vars.cc
src/messages/cquery_wait.cc
src/messages/exit.cc
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ some extra features to boot:

* code completion (with both signature help and snippets)
* finding [definition](src/messages/text_document_definition.cc)/[references](src/messages/text_document_references.cc)
* [call (caller/callee) hierarchy](src/messages/cquery_call_hierarchy.cc), [inheritance (base/derived) hierarchy](src/messages/cquery_inheritance_hierarchy.cc), [member hierarchy](src/messages/cquery_member_hierarchy.cc)
* [call (caller/callee) hierarchy](src/messages/cquery_call_hierarchy.cc), [inheritance (base/derived) hierarchy](src/messages/cquery_inheritance_hierarchy.cc)
* [symbol rename](src/messages/text_document_rename.cc)
* [document symbols](src/messages/text_document_document_symbol.cc) and approximate search of [workspace symbol](src/messages/workspace_symbol.cc)
* [hover information](src/messages/text_document_hover.cc)
Expand Down
261 changes: 0 additions & 261 deletions src/messages/cquery_member_hierarchy.cc

This file was deleted.

0 comments on commit 04609a5

Please sign in to comment.