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
b9651c04
"git@developer.sourcefind.cn:yangql/googletest.git" did not exist on "a7833a19bda5e3c7e0dc226875752514cf77645b"
Commit
b9651c04
authored
Jan 24, 2018
by
Gennadiy Civil
Browse files
placating gcc and its overzeauls size comparison warnings
parent
264ba3e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
googletest/test/gtest-printers_test.cc
googletest/test/gtest-printers_test.cc
+1
-1
No files found.
googletest/test/gtest-printers_test.cc
View file @
b9651c04
...
@@ -1619,7 +1619,7 @@ TEST(IsValidUTF8Test, IllFormedUTF8) {
...
@@ -1619,7 +1619,7 @@ TEST(IsValidUTF8Test, IllFormedUTF8) {
{
"
\xEE\x80\x80
"
,
"
\"\\
xEE
\\
x80
\\
x80
\"\n
As Text:
\"
\"
"
}
{
"
\xEE\x80\x80
"
,
"
\"\\
xEE
\\
x80
\\
x80
\"\n
As Text:
\"
\"
"
}
};
};
for
(
int
i
=
0
;
i
<
sizeof
(
kTestdata
)
/
sizeof
(
kTestdata
[
0
]);
++
i
)
{
for
(
int
i
=
0
;
i
<
int
(
sizeof
(
kTestdata
)
/
sizeof
(
kTestdata
[
0
])
)
;
++
i
)
{
EXPECT_PRINT_TO_STRING_
(
kTestdata
[
i
][
0
],
kTestdata
[
i
][
1
]);
EXPECT_PRINT_TO_STRING_
(
kTestdata
[
i
][
0
],
kTestdata
[
i
][
1
]);
}
}
}
}
...
...
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