Skip to content

Commit e8b2d48

Browse files
committed
fixes
1 parent 6b31812 commit e8b2d48

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

clang-tools-extra/clang-tidy/performance/LostStdMoveCheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- LostStdMoveCheck.cpp - clang-tidy --------------------------------===//
1+
//===----------------------------------------------------------------------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.

clang-tools-extra/clang-tidy/performance/LostStdMoveCheck.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- LostStdMoveCheck.h - clang-tidy ------------------------*- C++ -*-===//
1+
//===----------------------------------------------------------------------===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.
@@ -18,7 +18,7 @@ namespace clang::tidy::performance {
1818
/// expressions.
1919
///
2020
/// For the user-facing documentation see:
21-
/// http://clang.llvm.org/extra/clang-tidy/checks/performance/lost-std-move.html
21+
/// https://clang.llvm.org/extra/clang-tidy/checks/performance/lost-std-move.html
2222
class LostStdMoveCheck : public ClangTidyCheck {
2323
public:
2424
LostStdMoveCheck(StringRef Name, ClangTidyContext *Context);

0 commit comments

Comments
 (0)