Make list of subterms in debug output easier to spot
ClosedPublic

Authored by bruns on Apr 7 2018, 2:39 AM.

Details

Summary

'(' was used for both delimiting Terms and list of Subterms. Use '[' for
lists instead.
Old:
( AND ( : a (QString)) ( AND ( OR ( : b (QString)) ( : c (QString)) ) ( : d (QString)) ) )
New:
[ AND ( : a (QString)) [ AND [ OR ( : b (QString)) ( : c (QString)) ] ( : d (QString)) ] ]

Test Plan

ctest -V

Diff Detail

Repository
R293 Baloo
Lint
Automatic diff as part of commit; lint not applicable.
Unit
Automatic diff as part of commit; unit tests not applicable.
bruns created this revision.Apr 7 2018, 2:39 AM
Restricted Application added projects: Frameworks, Baloo. · View Herald TranscriptApr 7 2018, 2:39 AM
Restricted Application added a subscriber: Frameworks. · View Herald Transcript
bruns requested review of this revision.Apr 7 2018, 2:39 AM
michaelh accepted this revision.Apr 7 2018, 6:14 AM
This revision is now accepted and ready to land.Apr 7 2018, 6:14 AM
This revision was automatically updated to reflect the committed changes.