Opened 7 years ago
Closed 7 years ago
#100 closed defect (fixed)
Ternary operator lost of const or some other cost
| Reported by: | Thierry Delisle | Owned by: | |
|---|---|---|---|
| Priority: | major | Component: | cfa-cc |
| Version: | 1.0 | Keywords: | |
| Cc: |
Description
struct Thingy {
char name[30];
};
struct MoreThingy {
Thingy * condig;
};
const char * got(MoreThingy & this) {
return this.condig ? this.condig->name : "Nope";
}
Change History (1)
comment:1 by , 7 years ago
| Owner: | set to |
|---|---|
| Resolution: | → fixed |
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
In 825170d: