You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.5 KiB
71 lines
2.5 KiB
From 897c07bda2d116bcc2fa4a64c1eb75a52651c991 Mon Sep 17 00:00:00 2001
|
|
From: David Tardon <dtardon@redhat.com>
|
|
Date: Sun, 26 Nov 2017 16:04:25 +0100
|
|
Subject: [PATCH] fix includes in aarch64 bridge
|
|
|
|
Change-Id: Ia27f15483c27bc43a3cd3a74432f15fa928ad6da
|
|
---
|
|
bridges/source/cpp_uno/gcc3_linux_aarch64/abi.cxx | 2 +-
|
|
bridges/source/cpp_uno/gcc3_linux_aarch64/callvirtualfunction.cxx | 2 +-
|
|
bridges/source/cpp_uno/gcc3_linux_aarch64/cpp2uno.cxx | 2 +-
|
|
bridges/source/cpp_uno/gcc3_linux_aarch64/uno2cpp.cxx | 4 ++--
|
|
4 files changed, 5 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/bridges/source/cpp_uno/gcc3_linux_aarch64/abi.cxx b/bridges/source/cpp_uno/gcc3_linux_aarch64/abi.cxx
|
|
index fa6ffebfbc17..da22eb436b8f 100644
|
|
--- a/bridges/source/cpp_uno/gcc3_linux_aarch64/abi.cxx
|
|
+++ b/bridges/source/cpp_uno/gcc3_linux_aarch64/abi.cxx
|
|
@@ -38,7 +38,7 @@
|
|
#include <uno/any2.h>
|
|
#include <uno/mapping.h>
|
|
|
|
-#include <abi.hxx>
|
|
+#include "abi.hxx"
|
|
#include <osl/mutex.hxx>
|
|
#include <unordered_map>
|
|
|
|
diff --git a/bridges/source/cpp_uno/gcc3_linux_aarch64/callvirtualfunction.cxx b/bridges/source/cpp_uno/gcc3_linux_aarch64/callvirtualfunction.cxx
|
|
index 09f7696cfb4a..2f7188ea4f99 100644
|
|
--- a/bridges/source/cpp_uno/gcc3_linux_aarch64/callvirtualfunction.cxx
|
|
+++ b/bridges/source/cpp_uno/gcc3_linux_aarch64/callvirtualfunction.cxx
|
|
@@ -24,7 +24,7 @@
|
|
#include <sal/types.h>
|
|
#include <sal/alloca.h>
|
|
|
|
-#include <callvirtualfunction.hxx>
|
|
+#include "callvirtualfunction.hxx"
|
|
|
|
void callVirtualFunction(
|
|
unsigned long function, unsigned long * gpr, unsigned long * fpr,
|
|
diff --git a/bridges/source/cpp_uno/gcc3_linux_aarch64/cpp2uno.cxx b/bridges/source/cpp_uno/gcc3_linux_aarch64/cpp2uno.cxx
|
|
index 3d8eea4503e9..d867a04dd299 100644
|
|
--- a/bridges/source/cpp_uno/gcc3_linux_aarch64/cpp2uno.cxx
|
|
+++ b/bridges/source/cpp_uno/gcc3_linux_aarch64/cpp2uno.cxx
|
|
@@ -40,7 +40,7 @@
|
|
#include <types.hxx>
|
|
#include <vtablefactory.hxx>
|
|
|
|
-#include <abi.hxx>
|
|
+#include "abi.hxx"
|
|
|
|
extern "C" void vtableSlotCall_();
|
|
|
|
diff --git a/bridges/source/cpp_uno/gcc3_linux_aarch64/uno2cpp.cxx b/bridges/source/cpp_uno/gcc3_linux_aarch64/uno2cpp.cxx
|
|
index 4e7d69b0a871..8faccbf3edaf 100644
|
|
--- a/bridges/source/cpp_uno/gcc3_linux_aarch64/uno2cpp.cxx
|
|
+++ b/bridges/source/cpp_uno/gcc3_linux_aarch64/uno2cpp.cxx
|
|
@@ -42,8 +42,8 @@
|
|
#include <uno/any2.h>
|
|
#include <uno/data.h>
|
|
|
|
-#include <abi.hxx>
|
|
-#include <callvirtualfunction.hxx>
|
|
+#include "abi.hxx"
|
|
+#include "callvirtualfunction.hxx"
|
|
|
|
namespace {
|
|
|
|
--
|
|
2.14.3
|
|
|