Remove deprecated DESC_PORTABLE ODesc mode and ODesc::IsPortable()

This commit is contained in:
Tim Wojtulewicz 2022-06-15 15:09:32 -07:00
parent 77aa80033b
commit 765a8535e0
6 changed files with 14 additions and 25 deletions

View file

@ -21,7 +21,6 @@ class Type;
enum DescType
{
DESC_READABLE,
DESC_PORTABLE,
DESC_BINARY,
};
@ -39,7 +38,6 @@ public:
~ODesc();
bool IsReadable() const { return type == DESC_READABLE; }
bool IsPortable() const { return type == DESC_PORTABLE; }
bool IsBinary() const { return type == DESC_BINARY; }
bool IsShort() const { return is_short; }