Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilhem Saurel
hpp-util
Commits
7767d692
Commit
7767d692
authored
Jun 20, 2018
by
Raphael Lefevre
Browse files
Remove bad assert in decindent
parent
02441e9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/indent.cc
View file @
7767d692
...
...
@@ -38,8 +38,10 @@ namespace hpp
std
::
ostream
&
decindent
(
std
::
ostream
&
o
)
{
assert
(
indent
(
o
));
indent
(
o
)
-=
2
;
long
&
ind
=
indent
(
o
);
if
(
ind
>=
2
)
indent
(
o
)
-=
2
;
else
ind
=
0
;
return
o
;
}
...
...
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