* Warning about deprecated syntax. */
| 45 | * Warning about deprecated syntax. |
| 46 | */ |
| 47 | static void deprecated(const char *syntax, const char *alt) |
| 48 | { |
| 49 | static std::set<const char *, CStrCmp> seen; |
| 50 | auto i = seen.insert(syntax); |
| 51 | if (!i.second) |
| 52 | return; |
| 53 | warning("the `%s' syntax is deprecated; use `%s' instead", syntax, alt); |
| 54 | } |
| 55 | |
| 56 | |
| 57 | /* |
no test coverage detected