This patch fixes a bug where the yaml Output class emitted a sequence of flow sequences in an incorrect manner:
Before:
seq: [ a, b ] [ a, b ]
Afer:
seq: - [ a, b ] - [ a, b ]
Test case is attached.
Paths
| Differential D9206
YAML: Fix output of sequences that contain flow sequences ClosedPublic Authored by arphaman on Apr 22 2015, 1:12 PM.
Details Summary This patch fixes a bug where the yaml Output class emitted a sequence of flow sequences in an incorrect manner: Before: seq: [ a, b ] [ a, b ] Afer: seq: - [ a, b ] - [ a, b ] Test case is attached.
Diff Detail
Event Timelinearphaman updated this object. Closed by commit rL236329: YAML: Fix the output of sequences that contain flow sequences. (authored by arphaman). · Explain WhyMay 1 2015, 11:37 AM This revision was automatically updated to reflect the committed changes.
Revision Contents
Diff 24253 lib/Support/YAMLTraits.cpp
unittests/Support/YAMLIOTest.cpp
|