Loïc Touraine

Results 7 comments of Loïc Touraine

But is there a "non-easy" way to do it ? trying to walk through a template instantiation, it seems that inner template arguments are unexposed and available as a string...

I made a pull request (https://github.com/foonathan/cppast/pull/99) that parses every template instantiation argument. There may be limitations, but up till now it worked for instantiations such as std::vector and provide the...

I believe stdint.h has been parsed : I use the compilation database generated from Qt creator to parse the file, hence the stdint.h file must be in the include paths....

Thanks Jonathan, I found a workaround for now extending the builtin_type_kind enum in my own code and parsing the type name. But maybe there is a sense for cppast to...

Hello Jonathan, I meet an issue parsing a template instantiation parameter and have some difficulty to figure out what happens. The function parameter is declared as std::vector. While trying to...

I forgot to put the code retrieving the arguments array : if (p.kind() == cppast::cpp_type_kind::template_instantiation_t) { auto& templateInstType = static_cast(p); auto tmplArgs = templateInstType.arguments(); } Le lun. 16 déc. 2019...

Hi, I also need to know your project's license, can you provide license information please ?