Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
yangql
googletest
Commits
831bc035
Commit
831bc035
authored
Apr 14, 2021
by
Abseil Team
Committed by
Dino Radaković
Apr 15, 2021
Browse files
Googletest export
Fix -Wconversion issues on Fuchsia PiperOrigin-RevId: 368520510
parent
8d664b94
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
googletest/src/gtest-death-test.cc
googletest/src/gtest-death-test.cc
+2
-2
No files found.
googletest/src/gtest-death-test.cc
View file @
831bc035
...
...
@@ -865,7 +865,7 @@ class Arguments {
}
int
size
()
{
return
args_
.
size
()
-
1
;
return
static_cast
<
int
>
(
args_
.
size
()
)
-
1
;
}
private:
...
...
@@ -959,7 +959,7 @@ int FuchsiaDeathTest::Wait() {
GTEST_DEATH_TEST_CHECK_
(
status_zx
==
ZX_OK
);
GTEST_DEATH_TEST_CHECK_
(
buffer
.
flags
&
ZX_INFO_PROCESS_FLAG_EXITED
);
set_status
(
buffer
.
return_code
);
set_status
(
static_cast
<
int
>
(
buffer
.
return_code
)
)
;
return
status
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment