summaryrefslogtreecommitdiff
path: root/src/gtest-internal-inl.h
diff options
context:
space:
mode:
authorjgm@google.com <jgm@google.com@861a406c-534a-0410-8894-cb66d6ee9925>2012-01-17 15:11:32 +0000
committerjgm@google.com <jgm@google.com@861a406c-534a-0410-8894-cb66d6ee9925>2012-01-17 15:11:32 +0000
commit4dcb99d7acb0a551b7122f68a4d15d993f748c9d (patch)
tree1d5652c238bd324c2c3181c451f74b1fed8405da /src/gtest-internal-inl.h
parent580d3fc0ae4e4332a89f05039fef9f04ccf60d44 (diff)
downloadgtest-4dcb99d7acb0a551b7122f68a4d15d993f748c9d.tar.gz
gtest-4dcb99d7acb0a551b7122f68a4d15d993f748c9d.tar.bz2
gtest-4dcb99d7acb0a551b7122f68a4d15d993f748c9d.tar.xz
Adds file and line information to the "message", which is used as the summary
of a failure. git-svn-id: http://googletest.googlecode.com/svn/trunk@609 861a406c-534a-0410-8894-cb66d6ee9925
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 4e9805d..350ade0 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.