Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
1d9ceb81
Commit
1d9ceb81
authored
Jun 01, 2015
by
Alexandre Duret-Lutz
Browse files
* src/bin/common_trans.cc: Use nullptr instead of 0.
parent
0ac35a15
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/bin/common_trans.cc
View file @
1d9ceb81
...
...
@@ -138,7 +138,7 @@ quoted_string::print(std::ostream& os, const char* pos) const
printable_result_filename
::
printable_result_filename
()
{
val_
=
0
;
val_
=
nullptr
;
}
printable_result_filename
::~
printable_result_filename
()
...
...
@@ -155,7 +155,7 @@ void printable_result_filename::reset(unsigned n)
void
printable_result_filename
::
cleanup
()
{
delete
val_
;
val_
=
0
;
val_
=
nullptr
;
}
void
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment