search for: cxxconstructexpr

Displaying 2 results from an estimated 2 matches for "cxxconstructexpr".

2019 Jun 09
2
Strange local variable cv::VideoCapture allocated
...t; 'bool' lvalue ->enable_ffmpeg_decoder_ 0x7ff114221ef0 | | | `-CXXThisExpr 0x7ff113148950 <col:5> 'xyz::StreamData *' this | | |-CXXBindTemporaryExpr 0x7ff113153620 <col:30, col:69> 'cv::VideoCapture' (CXXTemporary 0x7ff113153618) | | | `-CXXConstructExpr 0x7ff1131535e0 <col:30, col:69> 'cv::VideoCapture' 'void (const cv::VideoCapture &) noexcept(false)' elidable | | | `-MaterializeTemporaryExpr 0x7ff1131535c8 <col:30, col:69> 'const cv::VideoCapture' lvalue | | | `-ImplicitCastExpr 0x7ff1131...
2013 Feb 06
1
[LLVMdev] Process the initializers of a C++ class properly
...ethod 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 for the members. Thanks, Miguel -------------...