summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-12-29 16:21:59 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-12-29 17:46:56 +0100
commit0e5fc156da7f40528f636a89b6bad7e14bdc8350 (patch)
tree933f35407cb93c418be8217aca4c7fd347177e02 /sal
parenta24cfdf7646e827beb34bdcad99f59956ef8d582 (diff)
PRIu64 is unused
...since 2d9beb7854bdfa6e6140e78ab754414340725e38 "OSL_TRACE in sal/rtl/source/alloc_*.cxx leads to deadlock..." Change-Id: I7ede71b8257fa402f5f174dfb9c12fa5e648a017 Reviewed-on: https://gerrit.libreoffice.org/47177 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sal')
-rw-r--r--sal/rtl/alloc_impl.hxx11
1 files changed, 0 insertions, 11 deletions
diff --git a/sal/rtl/alloc_impl.hxx b/sal/rtl/alloc_impl.hxx
index 852db3767e2c..89b9b7c9fa67 100644
--- a/sal/rtl/alloc_impl.hxx
+++ b/sal/rtl/alloc_impl.hxx
@@ -51,17 +51,6 @@
#define RTL_MEMORY_P2END(value, align) \
(-(~(sal_IntPtr)(value) & -(sal_IntPtr)(align)))
-/** printf() format specifier(s)
- * (from C90 <sys/int_fmtio.h>)
- */
-#ifndef PRIu64
-#if defined(_MSC_VER)
-#define PRIu64 "I64u"
-#else /* !_MSC_VER */
-#define PRIu64 "llu"
-#endif /* !_MSC_VER */
-#endif /* PRIu64 */
-
/** highbit(): log2() + 1
(complexity O(1))
*/