简体   繁体   中英

lambda capture error with gcc, compiles with clang

The following program does not compile with g++ 10.1.0

#include <iostream>

template <unsigned int N>
struct A {
  constexpr static unsigned int i = N;
};

template <class U>
void f()
{
  constexpr unsigned int i = U::i;
  auto lambda = [&]() {
    if constexpr (i > 2) {
      std::cout << "i > 2" << std::endl;
    }
    else {
      std::cout << "i <= 2" << std::endl;
    }
  };
  lambda();
}

int main()
{
  f<A<1>>();
  f<A<3>>();
  
  return 0;
}

With

g++ -Wall -std=c++17 -O3 -pedantic -o test test.cpp

the error is:

test.cpp: In lambda function:
test.cpp:13:24: error: lambda capture of ‘i’ is not a constant expression
   13 |     if constexpr (i > 2) {

However, the same code compiles fine with clang++ 11.1.0 and produces the expected result.

Which compiler is correct?

Normally you would not need to capture it at all : A lambda expression can read the value of a variable without capturing it if the variable: has const non-volatile integral or enumeration type and has been initialized with a constant expression, or is constexpr and has no mutable members.

This also works in GCC:

auto lambda = []() {
    if constexpr (i > 2) {
      std::cout << "i > 2" << std::endl;
    }
    else {
      std::cout << "i <= 2" << std::endl;
    }
};

Try it here.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM