This patch adds canonical delimiter support to the raw string formatting.
This allows matching delimiters to be updated to the canonical one.
Details
Details
Diff Detail
Diff Detail
- Repository
- rC Clang
- Build Status
Buildable 13931 Build 13931: arc lint + arc unit
Event Timeline
Comment Actions
lg
lib/Format/ContinuationIndenter.cpp | ||
---|---|---|
1336 | Can this be a StringRef? Can RawText outlive the Current token? |
lib/Format/ContinuationIndenter.cpp | ||
---|---|---|
1336 | Nice catch! The reformatting code creates a virtual source code environment which expects a null-terminated string. Added a comment why this is necessary. |
Can this be a StringRef? Can RawText outlive the Current token?