It seems that this is inconsistently applied in the code. We have .cpp files that use this tag (likely copy paste) when it’s not needed and header files that are missing this tag. My question is, is this recommendation still relevant for emacs users? Within the LLVM repo, I get:
This is probably an overestimate due to inclusion of clang and its test files. Within llvm, its 2677 out of 3104 have this, and 727 .cpp files have this unnecessarily.
I use Emacs as my primary editor and I would not mind if we got rid of these markers, because Emacs has a heuristic to detect whether a .h file is C or C++ and it seems to work the vast majority of the time. As a quick experiment I tried loading all the headers without a C++ marker (ignoring files in test/ and unittests/), and the only ones that were autodetected as C were:
I wouldn’t mind getting rid of the filename in the first line, too. It is a constant source of copy & paste errors and doesn’t convey any information.
The first line should also contain a brief description of the contents of the file, but often this description just doesn’t fit and becomes descriptiveless.
Personally, I just don’t add the description and have never seen any complaints.
Thanks. So, should we propose that change in the coding standard doc? (Eliminate the C++ tag in .h files and filenames in header line) So new files that are added do not need to follow it. The description can be optional.
Indeed it works! I wasn’t aware of this. It seems to have been introduced in 26.1 as the function c-or-c++-mode. Independent of that, I don’t really see why Emacs should be treated specially given how vastly configurable it is, although I myself use Emacs almost exclusively for editing code.
I would prefer a an empty line in the banner … no file name, no description, no mode indicator for Emacs.
+1 to removing the header line altogether, the header line is annoying to keep up to date.
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
No. My Emacs (29.4, lsp-mode and clangd-20 if that matters) can figure it out.
But while working on all these files, would it not make sense to split the files between for example .h and .hpp according to the language?
No. Changing the top line of the header files is already a fair amount of churn. Renaming the files and therefore changing the million places where they are #included would be pretty intolerable.