Move the RelationKind from Serialization.h to Relation.h. This patch doesn't
introduce any breaking changes.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Bulid results are available at http://results.llvm-merge-guard.org/Phabricator-37
See http://jenkins.llvm-merge-guard.org/job/Phabricator/37/ for more details.
Bulid results are available at http://results.llvm-merge-guard.org/Phabricator-38
See http://jenkins.llvm-merge-guard.org/job/Phabricator/38/ for more details.
clang-tools-extra/clangd/index/MemIndex.h | ||
---|---|---|
72 | can we rather use uint8_t in here instead of RelationKind to get rid of the DenseMapInfo specialization completely? | |
clang-tools-extra/clangd/index/Relation.h | ||
22 | is this clang-formatted ? | |
clang-tools-extra/clangd/index/Serialization.h | ||
88 | could you also delete definitions of these two functions? |
clang-tools-extra/clangd/index/MemIndex.cpp | ||
---|---|---|
95 ↗ | (On Diff #225034) | static_cast<> |
clang-tools-extra/clangd/index/MemIndex.h | ||
74 | "RelationKind should be of same size as a uint8_t" | |
llvm/include/llvm/ADT/DenseMapInfo.h | ||
70 ↗ | (On Diff #225034) | s/unsign/unsigned/ |
74 ↗ | (On Diff #225034) | s/unsigned/unsigned char/ |
76 ↗ | (On Diff #225034) | s/char/unsigned char/ |
Bulid results are available at http://results.llvm-merge-guard.org/Phabricator-40
See http://jenkins.llvm-merge-guard.org/job/Phabricator/40/ for more details.
Bulid results are available at http://results.llvm-merge-guard.org/Phabricator-41
See http://jenkins.llvm-merge-guard.org/job/Phabricator/41/ for more details.
Bulid results are available at http://results.llvm-merge-guard.org/Phabricator-43
See http://jenkins.llvm-merge-guard.org/job/Phabricator/43/ for more details.
Bulid results are available at http://results.llvm-merge-guard.org/Phabricator-42
See http://jenkins.llvm-merge-guard.org/job/Phabricator/42/ for more details.
can we rather use uint8_t in here instead of RelationKind to get rid of the DenseMapInfo specialization completely?