-
Notifications
You must be signed in to change notification settings - Fork 707
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regression with generated template parameters. #1113
Comments
Test-case: template<class K, class V>
class Entry : public K
{
V mData;
};
template<typename K, typename V>
class nsBaseHashtable {
typedef Entry<K, V> EntryType;
struct EntryPtr {
private:
EntryType& mEntry;
bool mExistingEntry;
};
}; |
Bisect says that 61743aa is to blame. |
Unfortunately that is not precisely a minimal commit... |
I got this one though. |
emilio
added a commit
to emilio/rust-bindgen
that referenced
this issue
Oct 28, 2017
bors-servo
pushed a commit
that referenced
this issue
Oct 28, 2017
ir: References have no implicit template parameters. Fixes #1113.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From 0.29 to 0.31, the following code corresponding to
nsBaseHashTable
has changed from:To:
Trying to find a test-case now.
The text was updated successfully, but these errors were encountered: