| 2647 | } |
| 2648 | |
| 2649 | static bool isCpp17OrLater(const simplecpp::DUI &dui) |
| 2650 | { |
| 2651 | const std::string std_ver = simplecpp::getCppStdString(dui.std); |
| 2652 | return std_ver.empty() || (std_ver >= "201703L"); |
| 2653 | } |
| 2654 | |
| 2655 | static bool isGnu(const simplecpp::DUI &dui) |
| 2656 | { |
no test coverage detected