Login Page - Create Account

Support Board


Date/Time: Sun, 09 Mar 2025 13:58:03 +0000



Post From: corruption of variables on simple code using standard arrays

[2022-03-01 15:36:35]
1+1=10 - Posts: 270
@User824913.

It happens! I went to bed last night with a bug in my ACSIL that resulted from:


// This is fine.
if (....)
x = 1;

// In Python both statements would be inside the if but in C++ the 2nd statement is not.
// Typically I'd catch this but I guess I was tired.
if (....)
x = 1;
y = 2; // Not inside the if

Anyway, good luck in your trading!