Platformio build error for LW3 custom settings

Thanks in advance…
Wanted to make some changes to my LW3’s Rambo board’s configuration.h settings via platformio. And removed the // from these settings:
#define NOZZLE_TO_PROBE_OFFSET { 0, 0, -0.5 }
#define MULTIPLE_PROBING 2
#define Z_AFTER_PROBING 5
#define X_BED_SIZE 1351 // 200
#define Y_BED_SIZE 2603.5 // 200
#define Z_MAX_POS 66
#define MAX_SOFTWARE_ENDSTOPS

and got 69 errors all over the place looking like this:
#elif ENABLED(AUTO_BED_LEVELING_UBL) and #if ANY(PIDTEMP, PIDTEMPBED, PIDTEMPCHAMBER) Where the words ENABLED ANY and , would be underlined as if misspelled. The errors are for “function call is not allowed in a constant expression c/c++ (59) and expected an expression c/c++(29)” The quick fixes were: Disable error squiggles…
So I didn’t fix any of the squiggles and built it just to see what happens. And it came out a “success”…? So, is it safe to upload to my rambo it at this point or should I have done something different in/for these commands?
Thanks

We’re those error messages in the build, or just suggestions from platformio?

There isn’t much risk of flashing the board. It can be flashed back.

Not 100% but I believe they were all just suggestions… They all appeared of lines I didn’t change. So, going for it. :slight_smile: Thanks