summaryrefslogtreecommitdiffstats
path: root/googletest/include/gtest/gtest-printers.h
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2018-08-14 15:04:11 -0400
committerGennadiy Civil <misterg@google.com>2018-08-14 15:04:11 -0400
commit265efde9a5b35fbd23622620fa597822e122f38a (patch)
tree57791ab8301581599060956528149d14215d08b2 /googletest/include/gtest/gtest-printers.h
parent3306848f697568aacf4bcca330f6bdd5ce671899 (diff)
downloadgoogletest-265efde9a5b35fbd23622620fa597822e122f38a.tar.gz
googletest-265efde9a5b35fbd23622620fa597822e122f38a.zip
Comments changes, no functionality changes.
Diffstat (limited to 'googletest/include/gtest/gtest-printers.h')
-rw-r--r--googletest/include/gtest/gtest-printers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/include/gtest/gtest-printers.h b/googletest/include/gtest/gtest-printers.h
index f4accac6..c67e30a1 100644
--- a/googletest/include/gtest/gtest-printers.h
+++ b/googletest/include/gtest/gtest-printers.h
@@ -826,7 +826,7 @@ void UniversalPrintArray(const T* begin, size_t len, ::std::ostream* os) {
// If the array has more than kThreshold elements, we'll have to
// omit some details by printing only the first and the last
// kChunkSize elements.
- // TODO(wan@google.com): let the user control the threshold using a flag.
+ // FIXME: let the user control the threshold using a flag.
if (len <= kThreshold) {
PrintRawArrayTo(begin, len, os);
} else {
OpenPOWER on IntegriCloud