summaryrefslogtreecommitdiff
path: root/inputmethod/scim/patches/patch-ab
blob: 905f46cc3813eef5e5185baad6bb50714b14e062 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
$NetBSD: patch-ab,v 1.1.1.1 2009/11/24 11:46:01 obache Exp $

--- src/scim_chartraits.cpp.orig	2008-11-02 06:42:37.000000000 +0000
+++ src/scim_chartraits.cpp
@@ -26,4 +26,5 @@
  */
 
+#if 0
 #include <string>
 #include "scim_types.h"
@@ -41,27 +42,33 @@ namespace std
   
 template<>
-void
-char_traits<ucs4_t>::assign(char_type& __c1, const char_type& __c2)
+struct char_traits<ucs4_t>
+{
+
+typedef ucs4_t char_type;
+typedef ucs4_t int_type;
+typedef streampos pos_type;
+typedef streamoff off_type;
+typedef mbstate_t state_type;
+
+static void
+assign(char_type& __c1, const char_type& __c2)
 {
     __c1 = __c2;
 }
 
-template<>
-bool 
-char_traits<ucs4_t>::eq(const char_type& __c1, const char_type& __c2)
+static bool 
+eq(const char_type& __c1, const char_type& __c2)
 {
     return __c1 == __c2;
 }
 
-template<>
-bool 
-char_traits<ucs4_t>::lt(const char_type& __c1, const char_type& __c2)
+static bool 
+lt(const char_type& __c1, const char_type& __c2)
 {
     return __c1 < __c2;
 }
 
-template<>
-char_traits<ucs4_t>::char_type*
-char_traits<ucs4_t>::assign(char_type* __s, size_t __n, char_type __a)
+static char_type*
+assign(char_type* __s, size_t __n, char_type __a)
 {
     char_type* dest = __s;
@@ -71,7 +78,6 @@ char_traits<ucs4_t>::assign(char_type* _
 }
 
-template<>
-char_traits<ucs4_t>::char_type*
-char_traits<ucs4_t>::copy(char_type* __s1, const char_type* __s2, size_t __n)
+static char_type*
+copy(char_type* __s1, const char_type* __s2, size_t __n)
 {
     char_type* dest = __s1;
@@ -82,13 +88,12 @@ char_traits<ucs4_t>::copy(char_type* __s
 }
 
-template<>
-char_traits<ucs4_t>::char_type*
-char_traits<ucs4_t>::move(char_type* __s1, const char_type* __s2, size_t __n)
+static char_type*
+move(char_type* __s1, const char_type* __s2, size_t __n)
 {
-    if (__s1 + __n > __s2) {
+    if (__s1 > __s2) {
         char_type* dest = __s1 + __n - 1;
-        const char_type* from = __s2;
+        const char_type* from = __s2 + __n - 1;
         while (__n-- > 0)
-            *(dest--) = *(from++);
+            *(dest--) = *(from--);
         return __s1;
     } else {
@@ -97,7 +102,6 @@ char_traits<ucs4_t>::move(char_type* __s
 }
 
-template<>
-size_t
-char_traits<ucs4_t>::length(const char_type* __s)
+static size_t
+length(const char_type* __s)
 {
     size_t __result = 0;
@@ -107,7 +111,6 @@ char_traits<ucs4_t>::length(const char_t
 }
 
-template<>
-int
-char_traits<ucs4_t>::compare(const char_type* __s1, const char_type* __s2, size_t __n)
+static int
+compare(const char_type* __s1, const char_type* __s2, size_t __n)
 {
     while ( (*__s1 == *__s2++) && __n-- > 0 )
@@ -118,7 +121,6 @@ char_traits<ucs4_t>::compare(const char_
 }
 
-template<>
-const char_traits<ucs4_t>::char_type*
-char_traits<ucs4_t>::find(const char_type* __s, size_t __n, const char_type& __a)
+static const char_type*
+find(const char_type* __s, size_t __n, const char_type& __a)
 {
     while (__n-- > 0) {
@@ -130,40 +132,38 @@ char_traits<ucs4_t>::find(const char_typ
 }
 
-template<>
-char_traits<ucs4_t>::char_type
-char_traits<ucs4_t>::to_char_type (const int_type& __c)
+static char_type
+to_char_type(const int_type& __c)
 {
     return static_cast<char_type>(__c);
 }
 
-template<>
-char_traits<ucs4_t>::int_type
-char_traits<ucs4_t>::to_int_type (const char_type& __c)
+static int_type
+to_int_type(const char_type& __c)
 {
     return static_cast<int_type>(__c);
 }
 
-template<>
-bool
-char_traits<ucs4_t>::eq_int_type(const int_type& __c1, const int_type& __c2)
+static bool
+eq_int_type(const int_type& __c1, const int_type& __c2)
 {
     return __c1 == __c2;
 }
 
-template<>
-char_traits<ucs4_t>::int_type
-char_traits<ucs4_t>::eof ()
+static int_type
+eof()
 {
-    return static_cast<int_type>(EOF);
+    return static_cast<int_type>(-1);
 }
 
-template<>
-char_traits<ucs4_t>::int_type
-char_traits<ucs4_t>::not_eof (const int_type& __c)
+static int_type
+not_eof(const int_type& __c)
 {
-    return (__c == eof()) ? 0 : __c;
+    return eq_int_type(__c, eof()) ? static_cast<int_type>(0) : __c;
 }
 
-}
+}; //struct char_traits<ucs4_t>
+
+} //namespace std
+#endif
 #endif