summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925>2011-11-28 19:52:07 +0000
committervladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925>2011-11-28 19:52:07 +0000
commit580d3fc0ae4e4332a89f05039fef9f04ccf60d44 (patch)
tree7156c5157a59539b007cff49cc44ba65adbd723d
parent93fed47dbf8e6bc3d39d3f769cb5039551747257 (diff)
downloadgtest-580d3fc0ae4e4332a89f05039fef9f04ccf60d44.tar.gz
gtest-580d3fc0ae4e4332a89f05039fef9f04ccf60d44.tar.bz2
gtest-580d3fc0ae4e4332a89f05039fef9f04ccf60d44.tar.xz
Removes spurious semicolon.
git-svn-id: http://googletest.googlecode.com/svn/trunk@608 861a406c-534a-0410-8894-cb66d6ee9925
-rw-r--r--src/gtest-internal-inl.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gtest-internal-inl.h b/src/gtest-internal-inl.h
index 1ea31a1..4e9805d 100644
--- a/src/gtest-internal-inl.h
+++ b/src/gtest-internal-inl.h
@@ -443,8 +443,7 @@ class OsStackTraceGetter : public OsStackTraceGetterInterface {
virtual String CurrentStackTrace(int max_depth, int skip_count)
GTEST_LOCK_EXCLUDED_(mutex_);
- virtual void UponLeavingGTest();
- GTEST_LOCK_EXCLUDED_(mutex_);
+ virtual void UponLeavingGTest() GTEST_LOCK_EXCLUDED_(mutex_);
// This string is inserted in place of stack frames that are part of
// Google Test's implementation.