aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Interpreter/OptionArgParser.cpp
diff options
context:
space:
mode:
authorRaphael Isemann <teemperor@gmail.com>2020-01-24 08:23:27 +0100
committerRaphael Isemann <teemperor@gmail.com>2020-01-24 08:52:55 +0100
commit808142876c10b52e7ee57cdc6dcf0acc5c97c1b7 (patch)
treeeb2eca277412bed0b091c78a979bacd53d0615fa /lldb/source/Interpreter/OptionArgParser.cpp
parent4274a610b3c248af8a4d3cfe7723e031465563c8 (diff)
downloadllvm-808142876c10b52e7ee57cdc6dcf0acc5c97c1b7.zip
llvm-808142876c10b52e7ee57cdc6dcf0acc5c97c1b7.tar.gz
llvm-808142876c10b52e7ee57cdc6dcf0acc5c97c1b7.tar.bz2
[lldb][NFC] Fix all formatting errors in .cpp file headers
Summary: A *.cpp file header in LLDB (and in LLDB) should like this: ``` //===-- TestUtilities.cpp -------------------------------------------------===// ``` However in LLDB most of our source files have arbitrary changes to this format and these changes are spreading through LLDB as folks usually just use the existing source files as templates for their new files (most notably the unnecessary editor language indicator `-*- C++ -*-` is spreading and in every review someone is pointing out that this is wrong, resulting in people pointing out that this is done in the same way in other files). This patch removes most of these inconsistencies including the editor language indicators, all the different missing/additional '-' characters, files that center the file name, missing trailing `===//` (mostly caused by clang-format breaking the line). Reviewers: aprantl, espindola, jfb, shafik, JDevlieghere Reviewed By: JDevlieghere Subscribers: dexonsmith, wuzish, emaste, sdardis, nemanjai, kbarton, MaskRay, atanasyan, arphaman, jfb, abidh, jsji, JDevlieghere, usaxena95, lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D73258
Diffstat (limited to 'lldb/source/Interpreter/OptionArgParser.cpp')
-rw-r--r--lldb/source/Interpreter/OptionArgParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/OptionArgParser.cpp b/lldb/source/Interpreter/OptionArgParser.cpp
index 56d99a4..3dcb30e8 100644
--- a/lldb/source/Interpreter/OptionArgParser.cpp
+++ b/lldb/source/Interpreter/OptionArgParser.cpp
@@ -1,4 +1,4 @@
-//===-- OptionArgParser.cpp -------------------------------------*- C++ -*-===//
+//===-- OptionArgParser.cpp -----------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.