-
Notifications
You must be signed in to change notification settings - Fork 31
Make CreateInterpreter take std::vector<std::string> #207
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
Comments
This issue is stale because it has been open for 90 days with no activity. |
This issue was closed because it has been inactive for 14 days since being marked as stale. |
@vgvassilev hi, i have come up with a solution for this.
Few Questions:
|
We should probably create an overload for this and deprecate the other interface. |
Ok, i will do that. Should i also forward the control from the older function to overloaded function |
@vgvassilev I have created the overloaded, but i am facing an issue.
I am not sure how to resolve this, i am searching for a solution for this. |
@vgvassilev i have opened a PR for this, you can take a look at the changes. |
This would allow us to reduce the code bloat in converting
string
s intoconst char*
. That will lift the responsibility for thinking about lifetime of theconst char*
from the users on the CppInterOp. Seetest.cpp
in conda-forge/cppinterop-feedstockThe text was updated successfully, but these errors were encountered: