You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example program falis in the target C compiler:
target C;
reactor R<T> {
input in: T
}
main reactor {
r1 = new R<int>()
r2 = new R<int>()
}
The problem is that struct representing the input port of the generic R is generated twice. I am guessing that the two instances of R, even though using the same template argument, get different TypeParameterizedReactor objects
The text was updated successfully, but these errors were encountered:
This example program falis in the target C compiler:
The problem is that struct representing the input port of the generic
R
is generated twice. I am guessing that the two instances of R, even though using the same template argument, get different TypeParameterizedReactor objectsThe text was updated successfully, but these errors were encountered: