diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-12-18 20:11:37 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-12-18 20:11:37 +0000 |
commit | 461a67fa15370a9ec88f8f8a240bf7c123bb2029 (patch) | |
tree | 6942083d7d56bba40ec790a453ca58ad3baf6832 /unittests/Format/FormatTestUtils.h | |
parent | 75c3240472ba6ac2669ee72ca67eb72d4e2851fc (diff) |
Diffstat (limited to 'unittests/Format/FormatTestUtils.h')
-rw-r--r-- | unittests/Format/FormatTestUtils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unittests/Format/FormatTestUtils.h b/unittests/Format/FormatTestUtils.h index bd340e5b0e60e..d82d84ebedeff 100644 --- a/unittests/Format/FormatTestUtils.h +++ b/unittests/Format/FormatTestUtils.h @@ -30,7 +30,8 @@ inline std::string messUp(llvm::StringRef Code) { if (JustReplacedNewline) MessedUp[i - 1] = '\n'; InComment = true; - } else if (MessedUp[i] == '#' && (JustReplacedNewline || i == 0)) { + } else if (MessedUp[i] == '#' && + (JustReplacedNewline || i == 0 || MessedUp[i - 1] == '\n')) { if (i != 0) MessedUp[i - 1] = '\n'; InPreprocessorDirective = true; |