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

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.

2 participants