diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-02-07 19:24:38 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-02-07 19:23:01 +0000 |
commit | da147a4e64847f62007d3d01f82c8dc59e2f4366 (patch) | |
tree | fa15907dac279a99da66b98a9643d752aba57425 /sal/inc | |
parent | bddc774795c139f84e0f76a83eb1b046b9f51a32 (diff) |
Clean up C-style interface nonsense
Change-Id: Ie9a1e106f5270fd307d211fa334449c698acf25d
Reviewed-on: https://gerrit.libreoffice.org/34010
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sal/inc')
-rw-r--r-- | sal/inc/backtraceasstring.hxx (renamed from sal/inc/misc.hxx) | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/sal/inc/misc.hxx b/sal/inc/backtraceasstring.hxx index 440c00ce2548..d15065a48ce8 100644 --- a/sal/inc/misc.hxx +++ b/sal/inc/backtraceasstring.hxx @@ -6,13 +6,20 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -#ifndef INCLUDED_SAL_INC_INTERNAL_MISC_H -#define INCLUDED_SAL_INC_INTERNAL_MISC_H + +#ifndef INCLUDED_SAL_INC_BACKTRACEASSTRING_HXX +#define INCLUDED_SAL_INC_BACKTRACEASSTRING_HXX + +#include <sal/config.h> #include <rtl/ustring.hxx> +namespace osl { namespace detail { + /// Build a debugging backtrace from current PC location. -rtl_uString *osl_backtraceAsString(int maxNoStackFramesToDisplay); +OUString backtraceAsString(int maxNoStackFramesToDisplay); + +} } #endif // INCLUDED_SAL_INC_INTERNAL_MISC_H |