Re: [cfe-users] Porting preprocessor macros to be compatible with clang

2019-08-21 Thread Forumer 4umer via cfe-users
So a bit more explanation, the macros are used to generate data structure and methods and the following definition is used to declare a structure: DEF_STRUCT(namedDate, namedDate, (std::string, name), (std::time_t, date)) On visual when I look at preprocessed file I get this (focus on line

Re: [cfe-users] Porting preprocessor macros to be compatible with clang

2019-08-21 Thread Matthew Fernandez via cfe-users
> On Aug 21, 2019, at 05:36, Forumer 4umer via cfe-users > wrote: > > So a bit more explanation, the macros are used to generate data structure and > methods and the following definition is used to declare a structure: > > DEF_STRUCT(namedDate, namedDate, (std::string, name), (std::time_t, da