[clangd] Some minor fixes.

Reviewers: ilya-biryukov

Subscribers: ioeric, MaskRay, jkorous, arphaman, kadircet, cfe-commits

Tags: #clang

Differential Revision: https://reviews.llvm.org/D57755

llvm-svn: 353283
This commit is contained in:
Haojian Wu 2019-02-06 09:08:26 +00:00
parent 418280100b
commit 5dcc66d0b8
4 changed files with 7 additions and 8 deletions

View File

@ -1,4 +1,4 @@
//===--- Selection.h ------------------------------------------------------===// //===--- Selection.cpp ----------------------------------------------------===//
// //
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information. // See https://llvm.org/LICENSE.txt for license information.

View File

@ -56,8 +56,8 @@ public:
/// defining the Tweak. Definition is provided automatically by /// defining the Tweak. Definition is provided automatically by
/// REGISTER_TWEAK. /// REGISTER_TWEAK.
virtual const char *id() const = 0; virtual const char *id() const = 0;
/// Run the first stage of the action. The non-None result indicates that the /// Run the first stage of the action. Returns true indicating that the
/// action is available and should be shown to the user. Returns None if the /// action is available and should be shown to the user. Returns false if the
/// action is not available. /// action is not available.
/// This function should be fast, if the action requires non-trivial work it /// This function should be fast, if the action requires non-trivial work it
/// should be moved into 'apply'. /// should be moved into 'apply'.

View File

@ -1,4 +1,4 @@
//===-- RIFFTests.cpp - Binary container unit tests -----------------------===// //===-- SelectionTests.cpp - ----------------------------------------------===//
// //
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information. // See https://llvm.org/LICENSE.txt for license information.

View File

@ -1,9 +1,8 @@
//===-- TweakTests.cpp ------------------------------------------*- C++ -*-===// //===-- TweakTests.cpp ------------------------------------------*- C++ -*-===//
// //
// The LLVM Compiler Infrastructure // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// // See https://llvm.org/LICENSE.txt for license information.
// This file is distributed under the University of Illinois Open Source // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// License. See LICENSE.TXT for details.
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//