Displaying 1 result from an estimated 1 matches for "a6a232de857e5b703d4d21fc86588f77b".
2013 Feb 06
1
[LLVMdev] Process the initializers of a C++ class properly
...torInitializer.html#a877f0bab49ff048f7e0faddf3f528977>
() method for each initializer.
However, I want to have the initialization values themselves (a and
3.14...), then I tried to get the initializer expression (getInit
<http://clang.llvm.org/doxygen/classclang_1_1CXXCtorInitializer.html#a6a232de857e5b703d4d21fc86588f77b>
()) and then cast it to CXXConstructExpr in order to try to get the
arguments of the call to the constructors of A and f.
The problem is that the method getInit() is not returning the
initialization expression. Any ideas what could be wrong, or other ways
to get the initialization values f...