blob: 5cea1c18349ef30949dcabdd38e331d022ec0023 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
The supplied g++-4.2 compiler on 32-bit MacOSX apparently
mishandled private enum in the implementation (since newer
compilers are ok with it). This can be removed when we drop
support for 32-bit MacOSX.
http://tug.org/pipermail/tlbuild/2016q1/003438.html
(and starting at http://tug.org/pipermail/tlbuild/2016q1/003433.html)
--- source/i18n/dayperiodrules.h~ 2019-10-03 04:16:41.000000000 -0700
+++ source/i18n/dayperiodrules.h 2019-12-11 15:38:52.103766812 -0800
@@ -56,5 +56,5 @@
double getMidPointForDayPeriod(DayPeriod dayPeriod, UErrorCode &errorCode) const;
-private:
+/* nothing private to placate old compilers --karl/koch private: */
DayPeriodRules();
--- source/i18n/unicode/dtitvinf.h~ 2019-10-03 04:16:41.000000000 -0700
+++ source/i18n/unicode/dtitvinf.h 2019-12-11 15:38:52.103766812 -0800
@@ -330,5 +330,5 @@
-private:
+/* nothing private to placate old compilers --karl/koch private: */
/**
* DateIntervalFormat will need access to
@@ -364,5 +364,6 @@
};
public:
-#ifndef U_HIDE_INTERNAL_API
+/* nothing private to placate old compilers --karl/koch */
+/* ifndef U_HIDE_INTERNAL_API */
/**
* Max index for stored interval patterns
@@ -372,6 +373,6 @@
kMaxIntervalPatternIndex = kIPI_MAX_INDEX
};
-#endif /* U_HIDE_INTERNAL_API */
-private:
+/* endif */ /* U_HIDE_INTERNAL_API */
+/* nothing private to placate old compilers --karl/koch private: */
|