Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
What's new
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Menu
Open sidebar
justBCHit
thehub
Commits
c712c3c6
Commit
c712c3c6
authored
May 24, 2021
by
justBCHit
Browse files
Update MessageBuilder.h - add function didn't take size_t parameter
parent
58ac5a53
Pipeline
#308669141
failed with stages
in 2 minutes and 31 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
libs/utils/streaming/MessageBuilder.h
View file @
c712c3c6
...
...
@@ -45,6 +45,10 @@ public:
~
MessageBuilder
();
void
add
(
uint32_t
tag
,
uint64_t
value
);
inline
void
add
(
uint32_t
tag
,
size_t
value
)
{
add
(
tag
,
(
uint64_t
)
value
);
}
/// add an utf8 string
void
add
(
uint32_t
tag
,
const
std
::
string
&
value
);
inline
void
add
(
uint32_t
tag
,
const
char
*
utf8String
)
{
...
...
Write
Preview
Supports
Markdown
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