Language
C++
Compiler
clang HEAD 22.0.0git (https://github.com/llvm/llvm-project.git 8faeed042af2c1278cc71f0a5ef1a4d45f905eb8)
Options
Warnings
Don't Use Boost
C++2b(GNU)
no pedantic
$ clang++ prog.cc -Wall -Wextra -std=gnu++2b Exit Code:
0
Author
anonymous
about 1 month ago
C++
clang HEAD 22.0.0git (https://github.com/llvm/llvm-project.git 8faeed042af2c1278cc71f0a5ef1a4d45f905eb8)
Author
anonymous
about 1 month ago
$ clang++ prog.cc -Wall -Wextra -std=gnu++2b prog.cc:111:20: warning: unused variable 'context' [-Wunused-variable]
111 | GlobalContext* context = getContext();
| ^~~~~~~
prog.cc:63:20: warning: private field 'globalCtx' is not used [-Wunused-private-field]
63 | GlobalContext* globalCtx; // 親コンテキストへの参照
| ^
2 warnings generated.