Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
b4e03d76
Commit
b4e03d76
authored
10 months ago
by
Sébastien Blin
Browse files
Options
Downloads
Patches
Plain Diff
misc: fix build warning about initializer list
Change-Id: I0c61aa6a067afbf2afda46b1d2fae630254bf116
parent
9d9b77f1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/im/message_engine.h
+4
-4
4 additions, 4 deletions
src/im/message_engine.h
with
4 additions
and
4 deletions
src/im/message_engine.h
+
4
−
4
View file @
b4e03d76
...
...
@@ -95,12 +95,12 @@ private:
struct
Message
{
MessageToken
token
;
std
::
string
to
;
std
::
map
<
std
::
string
,
std
::
string
>
payloads
;
MessageToken
token
{}
;
std
::
string
to
{}
;
std
::
map
<
std
::
string
,
std
::
string
>
payloads
{}
;
MessageStatus
status
{
MessageStatus
::
IDLE
};
unsigned
retried
{
0
};
clock
::
time_point
last_op
;
clock
::
time_point
last_op
{}
;
MSGPACK_DEFINE_MAP
(
token
,
to
,
payloads
,
status
,
retried
,
last_op
)
};
...
...
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