abseil / abseil/abseil-cpp

ABSL_FLAG macro triggers abseil-no-namespace check

Đang mở
#1,190 2 bình luận 1 reaction 0 người được giao Xem trên GitHub
bug
Ngôn ngữ chính
C++
Star
18.1k
Fork
3.2k
Merge trung bình
20 giờ 36 phút
Pull request đã merge (30 ngày)
1

Mô tả

**Describe the bug**

ABSL_FLAG triggers clang-tidy abseil-no-namespace check

**Steps to reproduce the bug**

$ cat main.cc
```
#include "absl/flags/flag.h"
#include "absl/flags/parse.h"

ABSL_FLAG(std::string, input, "input", "input file path");

int main(int argc, char* argv[]) {
absl::ParseCommandLine(argc, argv);

return EXIT_SUCCESS;
}
```

clang-tidy --checks=abseil-* main.cc

```
main.cc:7:1: error: namespace 'absl' is reserved for implementation of the Abseil library and should not be opened in user code [abseil-no-namespace,-warnings-as-errors]
ABSL_FLAG(std::string, input, "input", "input file path");
^
external/com_google_absl/absl/flags/flag.h:166:3: note: expanded from macro 'ABSL_FLAG'
ABSL_FLAG_IMPL(Type, name, default_value, help)
^
external/com_google_absl/absl/flags/flag.h:269:13: note: expanded from macro 'ABSL_FLAG_IMPL'
namespace absl /* block flags in namespaces */ {} \
^
```

**What version of Abseil are you using?**

f3489c9ca64e0fad2a263e8560ee96718ac8b21b

**What operating system and version are you using**

Ubuntu 18.04

**What compiler and version are you using?**

clang-tidy-13

**What build system are you using?**

bazel 4.2.2

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Đánh giá

Issue này chưa được đánh giá.

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.