Skip to content

Commit

Permalink
icu: Fix patch
Browse files Browse the repository at this point in the history
The patch was from the entire git repository, while the downloaded
archive is only about icu4c. Make the paths relative to the icu4c
project.
  • Loading branch information
AlessandroBono committed Dec 20, 2024
1 parent 0adcc32 commit c04f7e2
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ Subject: [PATCH] Fix circular include on MS Visual Studio

Including ucal.h from a C file on MS VisualStudio triggers a circular include, which triggers a build fail.
---
icu4c/source/common/unicode/platform.h | 6 +++---
source/common/unicode/platform.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/icu4c/source/common/unicode/platform.h b/icu4c/source/common/unicode/platform.h
diff --git a/source/common/unicode/platform.h b/source/common/unicode/platform.h
index b2fcb21ef1..81976eacd8 100644
--- a/icu4c/source/common/unicode/platform.h
+++ b/icu4c/source/common/unicode/platform.h
--- a/source/common/unicode/platform.h
+++ b/source/common/unicode/platform.h
@@ -728,12 +728,12 @@
/*
* Notes:
Expand Down

0 comments on commit c04f7e2

Please sign in to comment.