Please consider the following code:
template
struct list{
template
list(Args…)
{
static_assert(sizeof…(Types)> 0); }
};
template
list(Args…) -> list;
< br />int main()
{
list l
Please consider the following code:
template
struct list{
template
list(Args…)
{
static_assert(sizeof…(Types)> 0); }
};
template
list(Args…) -> list;
< br />int main()
{
list l
I have a C project built using CMake. I usually build on OSX, but now I am trying to use the Windows version. For compatibility reasons, I want to use Clang on Windows .
I installed the pre-c