summaryrefslogtreecommitdiff
path: root/lib/common/Utils.h
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2014-12-06 12:56:03 +0000
committerChris Wilson <chris+github@qwirx.com>2014-12-06 12:56:03 +0000
commit9ce77cc16d4a8aeb72ec0dc925966e11c85a985e (patch)
treed95a96104d4be2fb9b42d406ec0db150601f8ceb /lib/common/Utils.h
parent5e0e3bb7a9d2767bb1ffdb392c742b616f97eb25 (diff)
Fix compile on platforms without execinfo.h
Diffstat (limited to 'lib/common/Utils.h')
-rw-r--r--lib/common/Utils.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/common/Utils.h b/lib/common/Utils.h
index 636fb487..3a5f0eb5 100644
--- a/lib/common/Utils.h
+++ b/lib/common/Utils.h
@@ -19,9 +19,7 @@ std::string GetBoxBackupVersion();
void SplitString(std::string String, char SplitOn, std::vector<std::string> &rOutput);
-#ifdef SHOW_BACKTRACE_ON_EXCEPTION
- void DumpStackBacktrace();
-#endif
+void DumpStackBacktrace();
bool FileExists(const std::string& rFilename, int64_t *pFileSize = 0,
bool TreatLinksAsNotExisting = false);