Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
PIM Messagelib
Commits
bfa31bb2
Commit
bfa31bb2
authored
Apr 10, 2017
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use nullptr here
parent
d7490f1d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
messageviewer/src/viewer/pluginloader.h
messageviewer/src/viewer/pluginloader.h
+1
-1
messageviewer/src/viewer/stl_util.h
messageviewer/src/viewer/stl_util.h
+1
-1
No files found.
messageviewer/src/viewer/pluginloader.h
View file @
bfa31bb2
...
...
@@ -85,7 +85,7 @@ private:
public:
virtual
~
PluginLoader
()
{
mSelf
=
0
;
mSelf
=
nullptr
;
}
/** Returns the single instance of this loader. */
...
...
messageviewer/src/viewer/stl_util.h
View file @
bfa31bb2
...
...
@@ -40,7 +40,7 @@ struct DeleteAndSetToZero {
void
operator
()(
const
T
*&
t
)
{
delete
t
;
t
=
0
;
t
=
nullptr
;
}
};
...
...
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