Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
liblinphone
Commits
4577b094
Commit
4577b094
authored
Oct 09, 2017
by
Ronan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(Core): Address and Logger use explicit constructors
parent
e5c3a5a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/address/address.h
src/address/address.h
+1
-1
src/logger/logger.h
src/logger/logger.h
+1
-1
No files found.
src/address/address.h
View file @
4577b094
...
...
@@ -36,7 +36,7 @@ class LINPHONE_PUBLIC Address : public ClonableObject {
friend
class
ClientGroupChatRoomPrivate
;
public:
Address
(
const
std
::
string
&
address
=
""
);
explicit
Address
(
const
std
::
string
&
address
=
""
);
Address
(
const
Address
&
src
);
~
Address
();
...
...
src/logger/logger.h
View file @
4577b094
...
...
@@ -40,7 +40,7 @@ public:
Fatal
};
Logger
(
Level
level
);
explicit
Logger
(
Level
level
);
~
Logger
();
std
::
ostringstream
&
getOutput
();
...
...
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