tatyana-krasnukha added a comment. Sorry, =default is not applicable in these cases, of course.
================ Comment at: clang/lib/CodeGen/TargetInfo.cpp:8123 +public: + ARCABIInfo(CodeGen::CodeGenTypes &CGT) : DefaultABIInfo(CGT) {} + ---------------- tatyana-krasnukha wrote: > Better use '= default' instead of {} > And you even may use inheriting constructor here Here should be inheriting of base class constructor: ``` using DefaultABIInfo::DefaultABIInfo; ``` https://reviews.llvm.org/D43089 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits