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

Trial for improve issue 2033 #2629

Merged
merged 6 commits into from
Feb 10, 2025

Conversation

guilpier-code
Copy link
Contributor

No description provided.

bool hasRightExtension(const std::filesystem::directory_entry& e)
{
auto ext = e.path().extension();
return ext == ".csv" | ext == ".tsv";
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
return ext == ".csv" | ext == ".tsv";
return (ext == ".csv") || (ext == ".tsv");

Copy link
Member

Choose a reason for hiding this comment

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

(gcc warning)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done

@flomnes flomnes merged commit 779b5f8 into feature/csv-data-series Feb 10, 2025
7 of 8 checks passed
@flomnes flomnes deleted the fix/trial-for-improve-issue-2033 branch February 10, 2025 16:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants