[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:
Kadir Cetinkaya 2020-01-16 15:36:12 +01:00
parent de4f88df97
commit a881fcafaa
No known key found for this signature in database
GPG Key ID: E39E36B8D2057ED6
1 changed files with 1 additions and 1 deletions

View File

@ -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.";