| 156 | // alignas expressions |
| 157 | std::unique_ptr<std::vector<std::string>> mAttributeAlignas; |
| 158 | void addAttributeAlignas(const std::string& a) { |
| 159 | if (!mAttributeAlignas) |
| 160 | mAttributeAlignas = std::unique_ptr<std::vector<std::string>>(new std::vector<std::string>()); |
| 161 | if (std::find(mAttributeAlignas->cbegin(), mAttributeAlignas->cend(), a) == mAttributeAlignas->cend()) |
| 162 | mAttributeAlignas->push_back(a); |
| 163 | } |
| 164 | |
| 165 | std::string mAttributeCleanup; |
| 166 |
no test coverage detected