Remove error-prone methods of BinaryRef.
authorSean Silva <silvas@purdue.edu>
Wed, 5 Jun 2013 23:55:26 +0000 (23:55 +0000)
committerSean Silva <silvas@purdue.edu>
Wed, 5 Jun 2013 23:55:26 +0000 (23:55 +0000)
A user shouldn't care about the internal state, and these methods by
their very nature require asserting a predicate on the internal state.
As such, they cannot be used safely without introducing hidden
long-distance dependencies on the manner of construction of the
BinaryRef.

Use writeAsBinary(raw_ostream &) and writeAsHex(raw_ostream &) if you
need to access the data in a binary or hex format.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183353 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Object/YAML.h

index e349e35dd45c4b9ddf0a3a4ba92773144f656ab5..7f59dd1cbc8bd12fc4392be10b8ecdf16f0ac449 100644 (file)
@@ -36,14 +36,6 @@ public:
       : Data(reinterpret_cast<const uint8_t *>(Data.data()), Data.size()),
         DataIsHexString(true) {}
   BinaryRef() : DataIsHexString(true) {}
-  StringRef getHex() const {
-    assert(DataIsHexString);
-    return StringRef(reinterpret_cast<const char *>(Data.data()), Data.size());
-  }
-  ArrayRef<uint8_t> getBinary() const {
-    assert(!DataIsHexString);
-    return Data;
-  }
   /// \brief The number of bytes that are represented by this BinaryRef.
   /// This is the number of bytes that writeAsBinary() will write.
   ArrayRef<uint8_t>::size_type binary_size() const {