Skip to content
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

Add new overload for CreateInterpreter and deprecate old interface #545

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

solo-source
Copy link

Description

This PR add a new overload for CreateInterpreter that takes a std::vector<std::string> (with an initializer_list overload as well) and makes the old interface deprecated (which accepted a std::vector<const char*>).

Fixes #207

Type of change

  • New feature

Testing

  • Added unit tests in InterpreterTest.cpp that call the new overload (using both initializer lists and explicit std::vectorstd::string) to verify a valid interpreter is created.

  • Added a test for the deprecated interface (using std::vector<const char*>) to ensure backward compatibility (this usage triggers a compile-time deprecation warning).

  • Verified that the ambiguous calls are resolved and that all existing tests pass.

Checklist

  • I have read the contribution guide recently

Copy link
Contributor

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

clang-tidy made some suggestions

@solo-source solo-source force-pushed the cppinterop-issue-207 branch from 79d9ffe to 72d5c63 Compare April 2, 2025 05:42
@solo-source solo-source requested a review from vgvassilev April 2, 2025 06:38
@solo-source solo-source requested a review from vgvassilev April 2, 2025 07:16
@solo-source solo-source force-pushed the cppinterop-issue-207 branch from ea4543a to 7d3585f Compare April 4, 2025 10:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Make CreateInterpreter take std::vector<std::string>
2 participants