Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tiago Peixoto
graph-tool
Commits
00b49466
Commit
00b49466
authored
Jul 10, 2016
by
Tiago Peixoto
Browse files
demangle.cc: Fix clang compilation issue
This fixes issue
#319
parent
3f2a5d5f
Pipeline
#199
failed with stage
in 3888 minutes and 56 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
src/graph/demangle.cc
View file @
00b49466
...
...
@@ -17,6 +17,7 @@
#include "demangle.hh"
#include <cxxabi.h>
#include <cstdlib>
std
::
string
name_demangle
(
std
::
string
name
)
{
...
...
@@ -25,6 +26,6 @@ std::string name_demangle(std::string name)
if
(
status
!=
0
)
return
name
+
" (cannot demangle symbol)"
;
std
::
string
ret
(
realname
);
free
(
realname
);
std
::
free
(
realname
);
return
ret
;
}
Mark Moll
@mmoll
mentioned in issue
#317 (closed)
·
Jul 10, 2016
mentioned in issue
#317 (closed)
mentioned in issue #317
Toggle commit list
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