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
{{ message }}
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.
structural equivalence currently does not take namespace into consideration, but it should.
file: a.cc
namespace x{
class a;
}
void f(x::a);
file: imported.cc
namespace y{
class a;
}
void f(y::a);
The error is that f(x::a) is said to be equivalent with f(y::a)
and the import fails.
There is such error in bitcoin.
The text was updated successfully, but these errors were encountered: