Skip to content

Conversation

@karjonas
Copy link

@karjonas karjonas commented Nov 24, 2022

This fix just removes a few templates which is needed since C++20 breaks previously valid code. See
https://timsong-cpp.github.io/cppwp/n4861/diff.cpp17.class

This is basically what is allowed and not in c++20:

template<class T>
struct A {
  A<T>();  // error: simple-template-id not allowed for constructor
  A(int);  // OK, injected-class-name used
  ~A<T>(); // error: simple-template-id not allowed for destructor
};

This fix just removes a few templates which is needed since C++20 breaks
previously valid code. See
https://timsong-cpp.github.io/cppwp/n4861/diff.cpp17.class

This is basically what is allowed and not in c++20:

template<class T>
struct A {
  A<T>();  // error: simple-template-id not allowed for constructor
  A(int);  // OK, injected-class-name used
  ~A<T>(); // error: simple-template-id not allowed for destructor
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants