Xcode 26 #endif Comments

Xcode 26 now shows the matching #if condition next to #endif. No more guessing or writing manual comments

1
2
3
#if DEBUG
    print("Debug mode")
#endif  // Xcode now automatically shows: #if DEBUG