On Wed, May 29, 2019 at 12:53:44PM +0100, David CARLIER wrote: > Here a little progress but maybe it s better doing this in small > "batches" rather than fixing everything in one shot ?
IMHO if we want to do anything about this, we should just in system.h add #ifdef __clang__ #pragma clang diagnostic ignored "-Wmismatched-tags" #endif perhaps with another guard for some minimum clang version number if the warning isn't in all clang versions or not all versions support that pragma. The warning is really flawed and we shouldn't adjust our source because of that. Jakub