Skip to content

Commit 410ffd3

Browse files
committed
Suppress false positive warning.
1 parent 60569c7 commit 410ffd3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/base/src/TSystem.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3353,7 +3353,8 @@ int TSystem::CompileMacro(const char *filename, Option_t *opt,
33533353
linkDepLibraries = linkLibs & 0x1;
33543354
}
33553355

3356-
constexpr const bool useCxxModules =
3356+
// FIXME: Triggers clang false positive warning -Wunused-lambda-capture.
3357+
/*constexpr const*/ bool useCxxModules =
33573358
#ifdef R__USE_CXXMODULES
33583359
true;
33593360
#else

0 commit comments

Comments
 (0)