[Remarks][NFC] Use StringLiteral for magic numbers

llvm-svn: 371869
This commit is contained in:
Francis Visoiu Mistrih 2019-09-13 16:46:23 +00:00
parent 14bfb56b1a
commit 1d6fb061cf
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ namespace remarks {
/// Note: this is different from the version of the remark entry.
constexpr uint64_t CurrentContainerVersion = 0;
/// The magic number used for identifying remark blocks.
constexpr StringRef ContainerMagic("RMRK", 4);
constexpr StringLiteral ContainerMagic("RMRK");
/// Type of the remark container.
/// The remark container has two modes:

View File

@ -19,7 +19,7 @@
namespace llvm {
namespace remarks {
constexpr StringRef Magic("REMARKS", 7);
constexpr StringLiteral Magic("REMARKS");
/// The format used for serializing/deserializing remarks.
enum class Format { Unknown, YAML, YAMLStrTab, Bitstream };