Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
f70c7022
Commit
f70c7022
authored
Jan 30, 2015
by
Guillaume Roguez
Browse files
upnp: fix compiler warnings
Refs #64935 Change-Id: I8293e184087a9b526c3ba4a3db12d875b8313306
parent
ac3bf29a
Changes
2
Show whitespace changes
Inline
Side-by-side
daemon/src/upnp/upnp.cpp
View file @
f70c7022
...
...
@@ -133,9 +133,9 @@ bool operator!= (Mapping &cMap1, Mapping &cMap2)
}
Controller
::
Controller
()
:
udpGlobalMappings_
(
getGlobalInstance
<
UDPMapGlobal
>
())
:
defaultIGD_
(
getIGD
())
,
udpGlobalMappings_
(
getGlobalInstance
<
UDPMapGlobal
>
())
,
tcpGlobalMappings_
(
getGlobalInstance
<
TCPMapGlobal
>
())
,
defaultIGD_
(
getIGD
())
{}
Controller
::~
Controller
()
...
...
daemon/src/upnp/upnp.h
View file @
f70c7022
...
...
@@ -117,7 +117,7 @@ public:
{};
/* move constructor and operator */
Mapping
(
Mapping
&&
other
)
=
default
;
Mapping
(
Mapping
&&
)
=
default
;
Mapping
&
operator
=
(
Mapping
&&
)
=
default
;
friend
bool
operator
==
(
Mapping
&
cRedir1
,
Mapping
&
cRedir2
);
...
...
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