Skip to content

Conversation

Abd002
Copy link

@Abd002 Abd002 commented Aug 14, 2025

Summary

This PR resolves compiler warnings related to deprecated usage of chained assignment on volatile variables, which became an issue in C++20 and later.

Details

  • Replaces statements like:
    iSetIterations = iIterations = aIterations;

with

iIterations = aIterations;
iSetIterations = iIterations;

@GitMoDu
Copy link

GitMoDu commented Aug 14, 2025

Related: #188

@arkhipenko
Copy link
Owner

This is resolved in v4.0.0

@arkhipenko arkhipenko closed this Sep 21, 2025
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.

3 participants