aboutsummaryrefslogtreecommitdiffstats
path: root/src/gtest-internal-inl.h
diff options
context:
space:
mode:
authorjgm <jgm@google.com>2012-01-17 15:11:32 +0000
committerjgm <jgm@google.com>2012-01-17 15:11:32 +0000
commit4d6f296e8e5d3f839ef4868390bbec27cb12e068 (patch)
tree1d5652c238bd324c2c3181c451f74b1fed8405da /src/gtest-internal-inl.h
parent69a071bc0d1c87b9b8271e8d7545ade7086be6bb (diff)
downloadgoogletest-4d6f296e8e5d3f839ef4868390bbec27cb12e068.tar.gz
googletest-4d6f296e8e5d3f839ef4868390bbec27cb12e068.tar.bz2
googletest-4d6f296e8e5d3f839ef4868390bbec27cb12e068.zip
Adds file and line information to the "message", which is used as the summary
of a failure.
Diffstat (limited to 'src/gtest-internal-inl.h')
-rw-r--r--src/gtest-internal-inl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtest-internal-inl.h b/src/gtest-internal-inl.h
index 4e9805d1..350ade07 100644
--- a/src/gtest-internal-inl.h
+++ b/src/gtest-internal-inl.h
@@ -620,7 +620,7 @@ class GTEST_API_ UnitTestImpl {
// For example, if Foo() calls Bar(), which in turn calls
// CurrentOsStackTraceExceptTop(1), Foo() will be included in the
// trace but Bar() and CurrentOsStackTraceExceptTop() won't.
- String CurrentOsStackTraceExceptTop(int skip_count);
+ String CurrentOsStackTraceExceptTop(int skip_count) GTEST_NO_INLINE_;
// Finds and returns a TestCase with the given name. If one doesn't
// exist, creates one and returns it.