summaryrefslogtreecommitdiffstats
path: root/googletest/src/gtest-internal-inl.h
diff options
context:
space:
mode:
authorTanzinul Islam <t_17_7@hotmail.com>2018-08-17 22:58:45 (GMT)
committerTanzinul Islam <t_17_7@hotmail.com>2018-08-17 22:58:45 (GMT)
commit9d77e63e125a24e8ba6cbe02b40681a37f59cd5f (patch)
tree5b4f48b7b3fd7c99e702774ffc53da0f3822613e /googletest/src/gtest-internal-inl.h
parent1cd979a80701a6c8c370f3a69048ba5cbec62a28 (diff)
parente82d320567a45db1a999f9109f2b9a733bc59bb1 (diff)
downloadgoogletest-9d77e63e125a24e8ba6cbe02b40681a37f59cd5f.zip
googletest-9d77e63e125a24e8ba6cbe02b40681a37f59cd5f.tar.gz
googletest-9d77e63e125a24e8ba6cbe02b40681a37f59cd5f.tar.bz2
Merge branch 'master' into fix_death_test_child_mingw_wer_issue1116
Diffstat (limited to 'googletest/src/gtest-internal-inl.h')
-rw-r--r--googletest/src/gtest-internal-inl.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/googletest/src/gtest-internal-inl.h b/googletest/src/gtest-internal-inl.h
index c5a4265..43effbf 100644
--- a/googletest/src/gtest-internal-inl.h
+++ b/googletest/src/gtest-internal-inl.h
@@ -27,10 +27,7 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-// Utility functions and classes used by the Google C++ testing framework.
-//
-// Author: wan@google.com (Zhanyong Wan)
-//
+// Utility functions and classes used by the Google C++ testing framework.//
// This file contains purely Google Test's internal implementation. Please
// DO NOT #INCLUDE IT IN A USER PROGRAM.
@@ -994,7 +991,7 @@ bool ParseNaturalNumber(const ::std::string& str, Integer* number) {
const bool parse_success = *end == '\0' && errno == 0;
- // TODO(vladl@google.com): Convert this to compile time assertion when it is
+ // FIXME: Convert this to compile time assertion when it is
// available.
GTEST_CHECK_(sizeof(Integer) <= sizeof(parsed));