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
3005672d
Commit
3005672d
authored
Oct 27, 2020
by
vslashg
Browse files
Merge pull request #3044 from manavrion:improve_file_path_normalize
PiperOrigin-RevId: 339242159
parents
1845b85a
113ca75c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
googletest/src/gtest-filepath.cc
googletest/src/gtest-filepath.cc
+5
-7
No files found.
googletest/src/gtest-filepath.cc
View file @
3005672d
...
@@ -349,21 +349,19 @@ FilePath FilePath::RemoveTrailingPathSeparator() const {
...
@@ -349,21 +349,19 @@ FilePath FilePath::RemoveTrailingPathSeparator() const {
// For example, "bar///foo" becomes "bar/foo". Does not eliminate other
// For example, "bar///foo" becomes "bar/foo". Does not eliminate other
// redundancies that might be in a pathname involving "." or "..".
// redundancies that might be in a pathname involving "." or "..".
void
FilePath
::
Normalize
()
{
void
FilePath
::
Normalize
()
{
std
::
string
normalized_pathname
;
auto
out
=
pathname_
.
begin
();
normalized_pathname
.
reserve
(
pathname_
.
length
());
for
(
const
char
character
:
pathname_
)
{
for
(
const
char
character
:
pathname_
)
{
if
(
!
IsPathSeparator
(
character
))
{
if
(
!
IsPathSeparator
(
character
))
{
normalized_pathname
.
push_back
(
character
);
*
(
out
++
)
=
character
;
}
else
if
(
normalized_pathname
.
empty
()
||
}
else
if
(
out
==
pathname_
.
begin
()
||
*
std
::
prev
(
out
)
!=
kPathSeparator
)
{
normalized_pathname
.
back
()
!=
kPathSeparator
)
{
*
(
out
++
)
=
kPathSeparator
;
normalized_pathname
.
push_back
(
kPathSeparator
);
}
else
{
}
else
{
continue
;
continue
;
}
}
}
}
pathname_
=
normalized_pathname
;
pathname_
.
erase
(
out
,
pathname_
.
end
())
;
}
}
}
// namespace internal
}
// namespace internal
...
...
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