diff options
author | Gennadiy Civil <misterg@google.com> | 2018-08-14 19:04:11 (GMT) |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2018-08-14 19:04:11 (GMT) |
commit | 265efde9a5b35fbd23622620fa597822e122f38a (patch) | |
tree | 57791ab8301581599060956528149d14215d08b2 /googletest/src/gtest-printers.cc | |
parent | 3306848f697568aacf4bcca330f6bdd5ce671899 (diff) | |
download | googletest-265efde9a5b35fbd23622620fa597822e122f38a.zip googletest-265efde9a5b35fbd23622620fa597822e122f38a.tar.gz googletest-265efde9a5b35fbd23622620fa597822e122f38a.tar.bz2 |
Comments changes, no functionality changes.
Diffstat (limited to 'googletest/src/gtest-printers.cc')
-rw-r--r-- | googletest/src/gtest-printers.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/src/gtest-printers.cc b/googletest/src/gtest-printers.cc index d68d929..de4d245 100644 --- a/googletest/src/gtest-printers.cc +++ b/googletest/src/gtest-printers.cc @@ -89,7 +89,7 @@ void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count, // If the object size is bigger than kThreshold, we'll have to omit // some details by printing only the first and the last kChunkSize // bytes. - // TODO(wan): let the user control the threshold using a flag. + // FIXME: let the user control the threshold using a flag. if (count < kThreshold) { PrintByteSegmentInObjectTo(obj_bytes, 0, count, os); } else { |