Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CoMISo
Base
Commits
276decf8
Commit
276decf8
authored
May 31, 2016
by
Max Lyon
Browse files
replace c++11 nullptr with NULL
parent
22db69d3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Debug/DebFile.cc
View file @
276decf8
...
...
@@ -135,7 +135,7 @@ public:
void
print
(
const
char
*
const
_s
,
const
bool
_cnsl
=
true
)
{
if
(
_s
==
nullptr
)
if
(
_s
==
NULL
)
return
;
for
(
int
i
=
0
,
c
=
_s
[
0
];
c
!=
'\0'
;
c
=
_s
[
++
i
])
print
((
char
)
c
,
_cnsl
);
...
...
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