forked from OSchip/llvm-project
[clangd] Make define outline code action visible
Summary: This got forgotten during the process. Reviewers: sammccall, usaxena95 Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D72840
This commit is contained in:
parent
de4f88df97
commit
a881fcafaa
|
@ -299,7 +299,7 @@ class DefineOutline : public Tweak {
|
|||
public:
|
||||
const char *id() const override;
|
||||
|
||||
bool hidden() const override { return true; }
|
||||
bool hidden() const override { return false; }
|
||||
Intent intent() const override { return Intent::Refactor; }
|
||||
std::string title() const override {
|
||||
return "Move function body to out-of-line.";
|
||||
|
|
Loading…
Reference in New Issue