llvm-namespace-comment

google-readability-namespace-comments 作为此检查的别名重定向至此。

检查长命名空间是否有结束注释。

https://llvm.net.cn/docs/CodingStandards.html#namespace-indentation

https://google.github.io/styleguide/cppguide.html#Namespaces

namespace n1 {
void f();
}

// becomes

namespace n1 {
void f();
}  // namespace n1

选项

ShortNamespaceLines

如果命名空间主体有超过 ShortNamespaceLines 行代码,则要求命名空间定义的结束大括号后面跟着结束注释。该值是一个无符号整数,默认为 1U

SpacesBeforeComments

一个无符号整数,指定命名空间定义结束注释之前的空格数。默认值为 1U