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
Hi all, I opened this issue as a way to communicate with all users.
In April 2021 we released IQS 2.1.0
This version includes new features and examples (see CHANGELOG for a short list), but also some code cleaning.
As part of adopting good coding practices, we collect all IQS class and methods in namespace "iqs".
If you have problems re-building previous projects, this may be the reason.
The fix is simple. In C++, when declaring a new QubitRegister object just use:
QubitRegister(...) ---> iqs::QubitRegister(...)
The text was updated successfully, but these errors were encountered:
I used the name 'iqs' myself as a sub-namespace in my project's namespace structure.
This can be fixed by using the ::iqs::QubitRegister to access the new top-level namespace 'iqs'.
Hi all, I opened this issue as a way to communicate with all users.
In April 2021 we released IQS 2.1.0
This version includes new features and examples (see CHANGELOG for a short list), but also some code cleaning.
As part of adopting good coding practices, we collect all IQS class and methods in namespace "iqs".
If you have problems re-building previous projects, this may be the reason.
The fix is simple. In C++, when declaring a new QubitRegister object just use:
QubitRegister(...) ---> iqs::QubitRegister(...)
The text was updated successfully, but these errors were encountered: