[llvm] r183280 - [docs] Replace non-existent LLVM_YAML_UNIQUE_TYPE() macro
Sean Silva
silvas at purdue.edu
Tue Jun 4 16:36:42 PDT 2013
Author: silvas
Date: Tue Jun 4 18:36:41 2013
New Revision: 183280
URL: http://llvm.org/viewvc/llvm-project?rev=183280&view=rev
Log:
[docs] Replace non-existent LLVM_YAML_UNIQUE_TYPE() macro
LLVM_YAML_STRONG_TYPEDEF() is the correct macro to perform this function.
Modified:
llvm/trunk/docs/YamlIO.rst
Modified: llvm/trunk/docs/YamlIO.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/YamlIO.rst?rev=183280&r1=183279&r2=183280&view=diff
==============================================================================
--- llvm/trunk/docs/YamlIO.rst (original)
+++ llvm/trunk/docs/YamlIO.rst Tue Jun 4 18:36:41 2013
@@ -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.
More information about the llvm-commits
mailing list