Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
eff1a6a0
Commit
eff1a6a0
authored
Dec 14, 2018
by
Josh Haberman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More fixes for import.
parent
9851c703
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
13 deletions
+13
-13
objectivec_helpers.cc
...google/protobuf/compiler/objectivec/objectivec_helpers.cc
+13
-13
No files found.
src/google/protobuf/compiler/objectivec/objectivec_helpers.cc
View file @
eff1a6a0
...
...
@@ -659,7 +659,7 @@ string GetCapitalizedType(const FieldDescriptor* field) {
// Some compilers report reaching end of function even though all cases of
// the enum are handed in the switch.
GOOGLE_LOG
(
FATAL
)
<<
"Can't get here."
;
return
NULL
;
return
string
()
;
}
ObjectiveCType
GetObjectiveCType
(
FieldDescriptor
::
Type
field_type
)
{
...
...
@@ -1052,13 +1052,13 @@ bool ExpectedPrefixesCollector::ConsumeLine(
line
.
ToString
()
+
"'."
;
return
false
;
}
StringPiece
package
(
line
,
0
,
offset
);
StringPiece
prefix
(
line
,
offset
+
1
,
line
.
length
()
-
offset
-
1
);
StringPiece
package
=
line
.
substr
(
0
,
offset
);
StringPiece
prefix
=
line
.
substr
(
offset
+
1
);
TrimWhitespace
(
&
package
);
TrimWhitespace
(
&
prefix
);
// Don't really worry about error checking the package/prefix for
// being valid. Assume the file is validated when it is created/edited.
(
*
prefix_map_
)[
package
.
ToString
()]
=
prefix
.
ToString
(
);
(
*
prefix_map_
)[
string
(
package
)]
=
string
(
prefix
);
return
true
;
}
...
...
@@ -1474,7 +1474,7 @@ class Parser {
bool
Parser
::
ParseChunk
(
StringPiece
chunk
)
{
if
(
!
leftover_
.
empty
())
{
chunk
.
AppendToString
(
&
leftover_
)
;
leftover_
+=
chunk
;
p_
=
StringPiece
(
leftover_
);
}
else
{
p_
=
chunk
;
...
...
@@ -1483,7 +1483,7 @@ bool Parser::ParseChunk(StringPiece chunk) {
if
(
p_
.
empty
())
{
leftover_
.
clear
();
}
else
{
leftover_
=
p_
.
ToString
(
);
leftover_
=
string
(
p_
);
}
return
result
;
}
...
...
@@ -1506,7 +1506,7 @@ bool Parser::ParseLoop() {
while
(
ReadLine
(
&
p_
,
&
line
))
{
++
line_
;
RemoveComment
(
&
line
);
StringPiece
TrimWhitespace
(
&
line
);
TrimWhitespace
(
&
line
);
if
(
line
.
size
()
==
0
)
{
continue
;
// Blank line.
}
...
...
@@ -1698,7 +1698,7 @@ bool ImportWriter::ProtoFrameworkCollector::ConsumeLine(
}
StringPiece
framework_name
(
line
,
0
,
offset
);
StringPiece
proto_file_list
(
line
,
offset
+
1
,
line
.
length
()
-
offset
-
1
);
StringPiece
TrimWhitespace
(
&
framework_name
);
TrimWhitespace
(
&
framework_name
);
int
start
=
0
;
while
(
start
<
proto_file_list
.
length
())
{
...
...
@@ -1708,24 +1708,24 @@ bool ImportWriter::ProtoFrameworkCollector::ConsumeLine(
}
StringPiece
proto_file
(
proto_file_list
,
start
,
offset
-
start
);
StringPiece
TrimWhitespace
(
&
proto_file
);
TrimWhitespace
(
&
proto_file
);
if
(
proto_file
.
size
()
!=
0
)
{
std
::
map
<
string
,
string
>::
iterator
existing_entry
=
map_
->
find
(
proto_file
.
ToString
(
));
map_
->
find
(
string
(
proto_file
));
if
(
existing_entry
!=
map_
->
end
())
{
std
::
cerr
<<
"warning: duplicate proto file reference, replacing framework entry for '"
<<
proto_file
.
ToString
()
<<
"' with '"
<<
framework_name
.
ToString
(
)
<<
string
(
proto_file
)
<<
"' with '"
<<
string
(
framework_name
)
<<
"' (was '"
<<
existing_entry
->
second
<<
"')."
<<
std
::
endl
;
std
::
cerr
.
flush
();
}
if
(
proto_file
.
find
(
' '
)
!=
StringPiece
::
npos
)
{
std
::
cerr
<<
"note: framework mapping file had a proto file with a space in, hopefully that isn't a missing comma: '"
<<
proto_file
.
ToString
(
)
<<
"'"
<<
std
::
endl
;
<<
string
(
proto_file
)
<<
"'"
<<
std
::
endl
;
std
::
cerr
.
flush
();
}
(
*
map_
)[
proto_file
.
ToString
()]
=
framework_name
.
ToString
(
);
(
*
map_
)[
string
(
proto_file
)]
=
string
(
framework_name
);
}
start
=
offset
+
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