Remove deprecations tagged for v6.1

This commit is contained in:
Tim Wojtulewicz 2023-05-26 14:18:44 -07:00 committed by Tim Wojtulewicz
parent 84d605602f
commit 4229af6820
27 changed files with 10 additions and 416 deletions

View file

@ -22,11 +22,6 @@ public:
void SuppressWeirds(bool enable) { suppress_weirds = enable; };
[[deprecated("Remove in v6.1. Use SuppressWeirds() instead.")]] void SupressWeirds(bool enable)
{
SuppressWeirds(enable);
}
// If enabled, flag (first) line with embedded NUL. Default off.
void SetIsNULSensitive(bool enable) { flag_NULs = enable; }