mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
Remove unused function, fix optimized builds
This commit is contained in:
parent
b75118ee13
commit
fc54ab48ec
2 changed files with 4 additions and 9 deletions
|
|
@ -698,8 +698,3 @@ ARDOUR::compute_sha1_of_file (std::string path)
|
||||||
sha1_result_hash (&s, hash);
|
sha1_result_hash (&s, hash);
|
||||||
return std::string (hash);
|
return std::string (hash);
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" {
|
|
||||||
void c_stacktrace() { stacktrace (cerr); }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -133,8 +133,8 @@ PBD::stacktrace (std::ostream& out, int /*levels*/)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void
|
#if 0 // unused
|
||||||
c_stacktrace ()
|
extern "C" {
|
||||||
{
|
void c_stacktrace () { PBD::stacktrace (std::cout); }
|
||||||
PBD::stacktrace (std::cout);
|
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue