Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
fuchsia.googlesource.com-third_party-flatbuffers
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fuchsia-mirror
fuchsia.googlesource.com-third_party-flatbuffers
Commits
671c9495
Commit
671c9495
authored
9 years ago
by
Chris
Committed by
Wouter van Oortmerssen
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Return the full string when requested from a flatbuffers::String, even if it contains a NULL byte.
parent
d7b4a31e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/flatbuffers/flatbuffers.h
+1
-1
1 addition, 1 deletion
include/flatbuffers/flatbuffers.h
with
1 addition
and
1 deletion
include/flatbuffers/flatbuffers.h
+
1
−
1
View file @
671c9495
...
...
@@ -379,7 +379,7 @@ template<typename T> static inline size_t VectorLength(const Vector<T> *v) {
struct
String
:
public
Vector
<
char
>
{
const
char
*
c_str
()
const
{
return
reinterpret_cast
<
const
char
*>
(
Data
());
}
std
::
string
str
()
const
{
return
c_str
(
);
}
std
::
string
str
()
const
{
return
std
::
string
(
c_str
(),
Length
()
);
}
bool
operator
<
(
const
String
&
o
)
const
{
return
strcmp
(
c_str
(),
o
.
c_str
())
<
0
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment