In G++17 7.3.0. I've tried to use struct in the following way. But it shows me compilation Error. I've tried in Custom test . In this AC Code I just added struct, but this shows me compilation error.But here with G++14, It's running very well.
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3611 |
| 4 | jiangly | 3583 |
| 5 | strapple | 3515 |
| 6 | tourist | 3470 |
| 7 | Radewoosh | 3415 |
| 8 | Um_nik | 3376 |
| 9 | maroonrk | 3361 |
| 10 | XVIII | 3345 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 162 |
| 2 | adamant | 148 |
| 3 | Um_nik | 146 |
| 4 | Dominater069 | 143 |
| 5 | errorgorn | 141 |
| 6 | cry | 138 |
| 7 | Proof_by_QED | 136 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 10 | soullless | 133 |
In G++17 7.3.0. I've tried to use struct in the following way. But it shows me compilation Error. I've tried in Custom test . In this AC Code I just added struct, but this shows me compilation error.But here with G++14, It's running very well.
| Name |
|---|



It's because
std::datais a keyword in C++17. You imported that with the statementusing namespace std. So, create a new namespace(or don't useusing namespace std), or just change the name of your struct.I didn't know this. Thank you.
Looking at the content on the link you've provided, I wouldn't call it a keyword, it's just a function. Keyword would've meant that I cannot declare this in the main function int data = 1; but indeed I can. But its good to know that I cannot declare a global variable named data. I have encountered this problem with some variable earlier and if I encounter this on compile time, I simply put this at the top before declaration: #define data dt or something similar. BTW, Thanks for the info on data being a predefined function.
You're right. I did use a wrong description, and thanks for your reminding.:)