| 141 | std::string& inits() { return mInits; } |
| 142 | |
| 143 | void insertInits(OutputFormatHelper& outputFormatHelper) |
| 144 | { |
| 145 | if(not mInits.empty()) { |
| 146 | outputFormatHelper.Append(mInits); |
| 147 | mInits.clear(); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | LambdaCallerType callerType() const { return mLambdaCallerType; } |
| 152 | bool insertName() const { return (LambdaCallerType::Decltype != mLambdaCallerType) or mForceName; } |