Debug variadic arguments

505 Views Asked by At

I'm currently debugging an issue in our build where in variadic arguments, the number of arguments ain't as expected.

Currently my code looks similar to:

class CustomException : public BaseException
{
public:
    template<typename ...T>
    CustomException(T &&...args) : BaseException(std::forward<T>(args)...)
    {
        static_assert(sizeof...(T) == 2);
    }
};
throw CustomException{size_t{}, size_t{}};

Based on this code, one would expect 2 arguments are being passed to the Ctor.

Surprisingly, this code does as expected with MSVC and fails on the static_assert with Clang.

Does any of you know a trick to force clang to reveal what it assumes the variadic argument pack is?

Edit Problem is related to copy construction that is required to throw, very specific to Clang-Cl

1

There are 1 best solutions below

4
On

The problem on hand seems to be a compiler bug, logged as https://bugs.llvm.org/show_bug.cgi?id=38801

The full reproduction:

test.cpp

struct A
{
   template<typename ... T>
   A(T &&...t)
   {
      static_assert(sizeof...(T) == 2);
   }

   A(const A &) = default;
   //A(A &) = default;
   A(A &&) = default;
   A &operator=(const A &) = default;
   A &operator=(A &&) = default;
};


int main(int, char **)
{
   throw A{size_t{}, size_t{}};
   return 0;
}

run.bat

clang-cl.exe -fms-compatibility-version=19.11 /DBOOST_USE_WINDOWS_H -w -Wno-unused-command-line-argument /Zc:inline /nologo /c /GR /EHsc /fp:precise /FS /std:c++17 /diagnostics:caret /O2 /I. /MDd /Zc:forScope /bigobj /Zc:wchar_t test.cpp

error

test.cpp(7,7):  error: static_assert failed
      static_assert(sizeof...(T) == 2);
      ^             ~~~~~~~~~~~~~~~~~
test.cpp(20,10):  note: in instantiation of function template specialization 'A::A<A &>' requested here
   throw A{size_t{}, size_t{}};
         ^
1 error generated.