Changes between Version 1 and Version 2 of Ticket #615
- Timestamp:
- 10/26/18 11:10:15 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #615 – Description
v1 v2 5 5 - The majority of these warnings comes from the `*GRAPH_TYPEDEFS` macros. 6 6 - One way to avoid would be to suppress them to apply some compiler specific `#pragma` statement, but I have no idea how to do it safely and compiler independently. Can anyone help me in doing this? Is it possible to do it locally only for these typedefs? 7 - The other solution is to use the `ignore_unused()` templates. The attaches chgset [ 2f7f2fd5b1a4] does this, but it is painful, because `ignore_unused()` cannot (and need not) be used in the global scope. Therefore we need to versions of all of these macros, one with the warning suppression, and one without. This is far from being convenient.7 - The other solution is to use the `ignore_unused()` templates. The attaches chgset [0f291d5010f6] does this, but it is painful, because `ignore_unused()` cannot (and need not) be used in the global scope. Therefore we need to versions of all of these macros, one with the warning suppression, and one without. This is far from being convenient. 8 8 - In addition, there are couple of standalone unused local typedefs, mainly in the test codes. What shall we do with them? 9 9 - Use `ignore_unused()` for them?