From 5e55efb9578c24587da31c5360e0ce33391816e6 Mon Sep 17 00:00:00 2001 From: Sean Silva Date: Tue, 4 Jun 2013 23:36:41 +0000 Subject: [PATCH] [docs] Replace non-existent LLVM_YAML_UNIQUE_TYPE() macro LLVM_YAML_STRONG_TYPEDEF() is the correct macro to perform this function. llvm-svn: 183280 --- docs/YamlIO.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/YamlIO.rst b/docs/YamlIO.rst index ded17288af6..a5cb637dd7e 100644 --- a/docs/YamlIO.rst +++ b/docs/YamlIO.rst @@ -353,7 +353,7 @@ had the following bit flags defined: flagsRound = 8 }; - LLVM_YAML_UNIQUE_TYPE(MyFlags, uint32_t) + LLVM_YAML_STRONG_TYPEDEF(uint32_t, MyFlags) To support reading and writing of MyFlags, you specialize ScalarBitSetTraits<> on MyFlags and provide the bit values and their names.