aboutsummaryrefslogtreecommitdiffstats
path: root/src/gmock-internal-utils.cc
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386>2009-08-07 07:15:56 +0000
committerzhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386>2009-08-07 07:15:56 +0000
commit9571b28675a5a602ed3c8a7acf270d03aca69c96 (patch)
tree787fabc0e1b32018bff805f4acd84f23d045fbe7 /src/gmock-internal-utils.cc
parenta18423e0ee0c5cfe69948e4f4d0826dc8fe15f8c (diff)
downloadgoogletest-9571b28675a5a602ed3c8a7acf270d03aca69c96.tar.gz
googletest-9571b28675a5a602ed3c8a7acf270d03aca69c96.tar.bz2
googletest-9571b28675a5a602ed3c8a7acf270d03aca69c96.zip
Removes duplicated definition of SetArgumentPointee (by Vlad Losev); Makes gmock compilable on platforms that don't have ::abort() (by Acadeli Checa); Fixes compatibility with Symbian's STLport (by Acadeli Checa).
Diffstat (limited to 'src/gmock-internal-utils.cc')
-rw-r--r--src/gmock-internal-utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gmock-internal-utils.cc b/src/gmock-internal-utils.cc
index 0e693c70..e72e019b 100644
--- a/src/gmock-internal-utils.cc
+++ b/src/gmock-internal-utils.cc
@@ -80,7 +80,7 @@ class GoogleTestFailureReporter : public FailureReporterInterface {
AssertHelper(type == FATAL ? TPRT_FATAL_FAILURE : TPRT_NONFATAL_FAILURE,
file, line, message.c_str()) = Message();
if (type == FATAL) {
- abort();
+ posix::Abort();
}
}
};