Skip to content

Commit 09e75d3

Browse files
Quinn PhamQuinn Pham
authored andcommitted
[libcxx][NFC] Inclusive language: remove use of sanity check
from libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/ [NFC] As part of using inclusive language within the llvm project, this patch rewords comments to remove sanity check. Reviewed By: #libc, philnik Differential Revision: https://reviews.llvm.org/D124391
1 parent 76d1f5e commit 09e75d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/overflow.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ struct testbuf
3838

3939
int main(int, char**)
4040
{
41-
// sanity check
41+
// check overflow
4242
{
4343
testbuf<char> tb("");
4444
tb.overflow();

libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/pbackfail.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ struct testbuf
3636

3737
int main(int, char**)
3838
{
39-
// sanity check
39+
// check pbackfail
4040
{
4141
testbuf<char> tb("");
4242
tb.pbackfail();

0 commit comments

Comments
 (0)