LLVM API Documentation
#include <YAMLTraits.h>
This class should be specialized by any integer type that is a union of bit values and the YAML representation is a flow sequence of strings. For example:
struct ScalarBitSetTraits<MyFlags> { static void bitset(IO &io, MyFlags &value) { io.bitSetCase(value, "big", flagBig); io.bitSetCase(value, "flat", flagFlat); io.bitSetCase(value, "round", flagRound); } };
Definition at line 82 of file YAMLTraits.h.