From: Sean Silva Date: Tue, 4 Jun 2013 23:36:41 +0000 (+0000) Subject: [docs] Replace non-existent LLVM_YAML_UNIQUE_TYPE() macro X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=cc5a6cb0a22736e133a17cf4de23e3d76de8058e;p=oota-llvm.git [docs] Replace non-existent LLVM_YAML_UNIQUE_TYPE() macro LLVM_YAML_STRONG_TYPEDEF() is the correct macro to perform this function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183280 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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.