Merge lp:~paul-lucas/zorba/pjl-misc into lp:zorba

Proposed by Paul J. Lucas
Status: Merged
Approved by: Paul J. Lucas
Approved revision: 11317
Merged at revision: 11598
Proposed branch: lp:~paul-lucas/zorba/pjl-misc
Merge into: lp:zorba
Diff against target: 565 lines (+77/-291)
13 files modified
CMakeLists.txt (+7/-7)
NOTICE.txt (+1/-1)
NOTICE.xml (+1/-1)
README.txt (+46/-48)
include/zorba/zorba_string.h (+4/-4)
modules/w3c/pregenerated/xqt-errors.xq (+5/-2)
src/diagnostics/diagnostic_en.xml (+6/-3)
src/diagnostics/pregenerated/dict_en.cpp (+1/-1)
src/util/string/rstring.h (+6/-6)
src/zorbaserialization/CMakeLists.txt (+0/-1)
src/zorbaserialization/base64impl.cpp (+0/-176)
src/zorbaserialization/base64impl.h (+0/-40)
src/zorbaserialization/serialize_basic_types.cpp (+0/-1)
To merge this branch: bzr merge lp:~paul-lucas/zorba/pjl-misc
Reviewer Review Type Date Requested Status
Matthias Brantner Approve
Paul J. Lucas Approve
Review via email: mp+180271@code.launchpad.net

Commit message

Fixed stemmer files location in NOTICE.
Removed unused base64 class.
Fixed typos in comments.
Clean-up.

Description of the change

Fixed stemmer files location in NOTICE.
Removed unused base64 class.
Fixed typos in comments.
Clean-up.

To post a comment you must log in.
Revision history for this message
Paul J. Lucas (paul-lucas) :
review: Approve
Revision history for this message
Matthias Brantner (matthias-brantner) :
review: Approve
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue starting for the following merge proposals:
https://code.launchpad.net/~paul-lucas/zorba/pjl-misc/+merge/180271

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue

Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue succeeded - proposal merged!

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt 2013-05-07 08:39:33 +0000
+++ CMakeLists.txt 2013-08-15 00:15:23 +0000
@@ -150,17 +150,17 @@
150 "int main() { static_assert(1,\"\"); }" ZORBA_CXX_STATIC_ASSERT)150 "int main() { static_assert(1,\"\"); }" ZORBA_CXX_STATIC_ASSERT)
151151
152# C++11 standard library types152# C++11 standard library types
153CHECK_CXX_SOURCE_COMPILES (153CHECK_CXX_SOURCE_COMPILES("
154 "#include <type_traits>154 #include <type_traits>
155 int main() { std::enable_if<true,int> x; }" ZORBA_HAVE_ENABLE_IF)155 int main() { std::enable_if<true,int> x; }" ZORBA_HAVE_ENABLE_IF)
156CHECK_CXX_SOURCE_COMPILES ("156CHECK_CXX_SOURCE_COMPILES("
157 #include <memory>157 #include <memory>
158 int main() { std::unique_ptr<int> p; }" ZORBA_HAVE_UNIQUE_PTR)158 int main() { std::unique_ptr<int> p; }" ZORBA_HAVE_UNIQUE_PTR)
159CHECK_CXX_SOURCE_COMPILES (159CHECK_CXX_SOURCE_COMPILES("
160 "#include <unordered_map>160 #include <unordered_map>
161 int main() { std::unordered_map<int,int> m; }" ZORBA_HAVE_UNORDERED_MAP)161 int main() { std::unordered_map<int,int> m; }" ZORBA_HAVE_UNORDERED_MAP)
162CHECK_CXX_SOURCE_COMPILES (162CHECK_CXX_SOURCE_COMPILES("
163 "#include <unordered_set>163 #include <unordered_set>
164 int main() { std::unordered_set<int> s; }" ZORBA_HAVE_UNORDERED_SET)164 int main() { std::unordered_set<int> s; }" ZORBA_HAVE_UNORDERED_SET)
165165
166################################################################################166################################################################################
167167
=== modified file 'NOTICE.txt'
--- NOTICE.txt 2013-05-07 08:39:33 +0000
+++ NOTICE.txt 2013-08-15 00:15:23 +0000
@@ -83,7 +83,7 @@
83 83
84----------------------------------------------------84----------------------------------------------------
8585
86src/zorbautils/stemmer/86src/runtime/full_text/stemmer/
8787
88Copyright: 2001 Dr. Martin Porter88Copyright: 2001 Dr. Martin Porter
8989
9090
=== modified file 'NOTICE.xml'
--- NOTICE.xml 2013-08-09 09:04:36 +0000
+++ NOTICE.xml 2013-08-15 00:15:23 +0000
@@ -71,7 +71,7 @@
71 </foreign-notice>71 </foreign-notice>
72 </foreign-files>72 </foreign-files>
73 <foreign-files>73 <foreign-files>
74 <file>src/zorbautils/stemmer/</file>74 <file>src/runtime/full_text/stemmer/</file>
75 <copyright>2001 Dr. Martin Porter</copyright>75 <copyright>2001 Dr. Martin Porter</copyright>
76 <foreign-notice>76 <foreign-notice>
77 All the software given out on this Snowball site is covered by the BSD77 All the software given out on this Snowball site is covered by the BSD
7878
=== modified file 'README.txt'
--- README.txt 2013-08-09 09:04:36 +0000
+++ README.txt 2013-08-15 00:15:23 +0000
@@ -1,48 +1,46 @@
1 --------------------------------------------------------------1--------------------------------------------------------------
2 Zorba - The XQuery Processor developed by the FLWOR Foundation2Zorba - The XQuery Processor developed by the FLWOR Foundation
3 --------------------------------------------------------------3--------------------------------------------------------------
44
5 The Latest Version5The Latest Version
6 ------------------6------------------
77
8 The latest version can be found at http://www.zorba.io/.8The latest version can be found at <http://www.zorba.io/>.
99
10 Documentation10Documentation
11 -------------11-------------
1212
13 The documentation is included in the doc directory, as well as 13The documentation is included in the doc directory as well as on the web site
14 on the website of the project at http://www.zorba-xquery.org/html/documentation14of the project at <http://www.zorba-xquery.org/html/documentation>.
1515
16 Build & Installation16Build & Installation
17 --------------------17--------------------
1818
19 Please see the documentation on the web site or in the doc directory19Please see the documentation on the web site or in the doc directory of the
20 of the package.20package.
2121
22 Bugs and errors22Bugs and errors
23 ---------------23---------------
2424
25 Bug or error reports should be sent to25Bug or error reports should be sent to
26 https://bugs.launchpad.net/zorba.26<https://bugs.launchpad.net/zorba>.
2727
2828
29 Licensing29Licensing
30 ---------30---------
3131
32 Please see the file called LICENSE.txt.32Please see the file called LICENSE.txt.
3333
3434
35 Contacts35Contacts
36 --------36--------
3737
38 o If you want to be informed about new code releases, bug fixes38o If you want to be informed about new code releases, bug fixes and general
39 and general news and information about the Zorba XQuery Processor39 news and information about the Zorba XQuery Processor, subscribe to the
40 subscribe to the Zorba Users mailing list as described under40 Zorba Users mailing list <zorba-users@googlegroups.com>
41 <zorba-users@lists.sourceforge.net>41
4242o If you have a concrete bug report for Zorba, please go to Zorba's Bug
43 o If you have a concrete bug report for Zorba please go to the43 Database and submit your report <https://bugs.launchpad.net/zorba>.
44 Zorba's Bug Database and submit your report:44
45 https://bugs.launchpad.net/zorba.45o If you want to participate in actively developing or supporting Zorba,
4646 please send an e-mail to <zorba-dev@googlegroups.com>.
47 o If you want to participate in actively developing Zorba or
48 support Zorba, please write a mail to: zorba-dev@googlegroups.com
4947
=== modified file 'include/zorba/zorba_string.h'
--- include/zorba/zorba_string.h 2013-02-07 17:24:36 +0000
+++ include/zorba/zorba_string.h 2013-08-15 00:15:23 +0000
@@ -239,7 +239,7 @@
239 * Appends a substring of the given string to this string.239 * Appends a substring of the given string to this string.
240 *240 *
241 * @param s The string to append.241 * @param s The string to append.
242 * @param s_pos The starting position is \a s.242 * @param s_pos The starting position in \a s.
243 * @param s_n The number of characters of \a s to append.243 * @param s_n The number of characters of \a s to append.
244 * @return this string.244 * @return this string.
245 */245 */
@@ -257,7 +257,7 @@
257 * Appends a substring of the given string to this string.257 * Appends a substring of the given string to this string.
258 *258 *
259 * @param s The string to append.259 * @param s The string to append.
260 * @param s_pos The starting position is \a s.260 * @param s_pos The starting position in \a s.
261 * @param s_n The number of characters of \a s to append.261 * @param s_n The number of characters of \a s to append.
262 * @return this string.262 * @return this string.
263 */263 */
@@ -1000,7 +1000,7 @@
1000 * @param pos The position within this string to replace at.1000 * @param pos The position within this string to replace at.
1001 * @param n The number of characters to replace.1001 * @param n The number of characters to replace.
1002 * @param s The replacement string.1002 * @param s The replacement string.
1003 * @param s_pos The starting position is \a s.1003 * @param s_pos The starting position in \a s.
1004 * @param s_n The number of characters of \a s to use.1004 * @param s_n The number of characters of \a s to use.
1005 * @return this string.1005 * @return this string.
1006 */1006 */
@@ -1014,7 +1014,7 @@
1014 * @param pos The position within this string to replace at.1014 * @param pos The position within this string to replace at.
1015 * @param n The number of characters to replace.1015 * @param n The number of characters to replace.
1016 * @param s The replacement string.1016 * @param s The replacement string.
1017 * @param s_pos The starting position is \a s.1017 * @param s_pos The starting position in \a s.
1018 * @param s_n The number of characters of \a s to use.1018 * @param s_n The number of characters of \a s to use.
1019 * @return this string.1019 * @return this string.
1020 */1020 */
10211021
=== modified file 'modules/w3c/pregenerated/xqt-errors.xq'
--- modules/w3c/pregenerated/xqt-errors.xq 2013-06-25 00:41:44 +0000
+++ modules/w3c/pregenerated/xqt-errors.xq 2013-08-15 00:15:23 +0000
@@ -1110,7 +1110,9 @@
11101110
1111(:~1111(:~
1112 :1112 :
1113 : String to be cast to decimal has too many digits of precision.1113 : Raised when casting a string to xs:decimal if the string has more
1114 : digits of precision than the implementation can represent (the
1115 : implementation also has the option of rounding).
1114 : 1116 :
1115 : @see http://www.w3.org/2005/xqt-errors1117 : @see http://www.w3.org/2005/xqt-errors
1116:)1118:)
@@ -1166,7 +1168,8 @@
11661168
1167(:~1169(:~
1168 :1170 :
1169 : Function stability not defined.1171 : Raised by fn:doc, fn:collection to indicate that it is not possible to
1172 : return a result that is guaranteed deterministic.
1170 : 1173 :
1171 : @see http://www.w3.org/2005/xqt-errors1174 : @see http://www.w3.org/2005/xqt-errors
1172:)1175:)
11731176
=== modified file 'src/diagnostics/diagnostic_en.xml'
--- src/diagnostics/diagnostic_en.xml 2013-08-01 09:41:39 +0000
+++ src/diagnostics/diagnostic_en.xml 2013-08-15 00:15:23 +0000
@@ -1452,7 +1452,9 @@
14521452
1453 <diagnostic code="FOCA0006">1453 <diagnostic code="FOCA0006">
1454 <comment>1454 <comment>
1455 String to be cast to decimal has too many digits of precision.1455 Raised when casting a string to xs:decimal if the string has more
1456 digits of precision than the implementation can represent (the
1457 implementation also has the option of rounding).
1456 </comment>1458 </comment>
1457 <value>"$1": string to be cast to decimal has too many digits of precision</value>1459 <value>"$1": string to be cast to decimal has too many digits of precision</value>
1458 </diagnostic>1460 </diagnostic>
@@ -1501,9 +1503,10 @@
15011503
1502 <diagnostic code="FODC0003">1504 <diagnostic code="FODC0003">
1503 <comment>1505 <comment>
1504 Function stability not defined.1506 Raised by fn:doc, fn:collection to indicate that it is not possible to
1507 return a result that is guaranteed deterministic.
1505 </comment>1508 </comment>
1506 <value>function stability not defined</value>1509 <value>$1 function result not guaranteed deterministic</value>
1507 </diagnostic>1510 </diagnostic>
15081511
1509 <diagnostic code="FODC0004">1512 <diagnostic code="FODC0004">
15101513
=== modified file 'src/diagnostics/pregenerated/dict_en.cpp'
--- src/diagnostics/pregenerated/dict_en.cpp 2013-08-01 09:41:39 +0000
+++ src/diagnostics/pregenerated/dict_en.cpp 2013-08-15 00:15:23 +0000
@@ -42,7 +42,7 @@
42 { "FOCZ0001", "invalid content passed to $1: $2" },42 { "FOCZ0001", "invalid content passed to $1: $2" },
43 { "FODC0001", "no context document for $1() function" },43 { "FODC0001", "no context document for $1() function" },
44 { "FODC0002", "\"$1\": error retrieving resource${: 2}" },44 { "FODC0002", "\"$1\": error retrieving resource${: 2}" },
45 { "FODC0003", "function stability not defined" },45 { "FODC0003", "$1 function result not guaranteed deterministic" },
46 { "FODC0004", "\"$1\": invalid argument to fn:collection()${: 2}" },46 { "FODC0004", "\"$1\": invalid argument to fn:collection()${: 2}" },
47 { "FODC0005", "\"$1\": invalid argument to fn:doc() or fn:doc-available()" },47 { "FODC0005", "\"$1\": invalid argument to fn:doc() or fn:doc-available()" },
48 { "FODC0006", "invalid content passed to $1: $2" },48 { "FODC0006", "invalid content passed to $1: $2" },
4949
=== modified file 'src/util/string/rstring.h'
--- src/util/string/rstring.h 2013-06-01 00:30:39 +0000
+++ src/util/string/rstring.h 2013-08-15 00:15:23 +0000
@@ -447,7 +447,7 @@
447 * Appends a substring of the given string to this string.447 * Appends a substring of the given string to this string.
448 *448 *
449 * @param s The string to append.449 * @param s The string to append.
450 * @param s_pos The starting position is \a s.450 * @param s_pos The starting position in \a s.
451 * @param s_n The number of characters of \a s to append.451 * @param s_n The number of characters of \a s to append.
452 * @return Returns this string.452 * @return Returns this string.
453 */453 */
@@ -459,7 +459,7 @@
459 *459 *
460 * @tparam RepType2 The string representation of \a s.460 * @tparam RepType2 The string representation of \a s.
461 * @param s The string to append.461 * @param s The string to append.
462 * @param s_pos The starting position is \a s.462 * @param s_pos The starting position in \a s.
463 * @param s_n The number of characters of \a s to append.463 * @param s_n The number of characters of \a s to append.
464 * @return Returns this string.464 * @return Returns this string.
465 */465 */
@@ -480,7 +480,7 @@
480 * Appends a substring of the given string to this string.480 * Appends a substring of the given string to this string.
481 *481 *
482 * @param s The string to append.482 * @param s The string to append.
483 * @param s_pos The starting position is \a s.483 * @param s_pos The starting position in \a s.
484 * @param s_n The number of characters of \a s to append.484 * @param s_n The number of characters of \a s to append.
485 * @return Returns this string.485 * @return Returns this string.
486 */486 */
@@ -1579,7 +1579,7 @@
1579 * @param pos The position within this string to replace at.1579 * @param pos The position within this string to replace at.
1580 * @param n The number of characters to replace.1580 * @param n The number of characters to replace.
1581 * @param s The replacement string.1581 * @param s The replacement string.
1582 * @param s_pos The starting position is \a s.1582 * @param s_pos The starting position in \a s.
1583 * @param s_n The number of characters of \a s to use.1583 * @param s_n The number of characters of \a s to use.
1584 * @return Returns this string.1584 * @return Returns this string.
1585 */1585 */
@@ -1595,7 +1595,7 @@
1595 * @param pos The position within this string to replace at.1595 * @param pos The position within this string to replace at.
1596 * @param n The number of characters to replace.1596 * @param n The number of characters to replace.
1597 * @param s The replacement string.1597 * @param s The replacement string.
1598 * @param s_pos The starting position is \a s.1598 * @param s_pos The starting position in \a s.
1599 * @param s_n The number of characters of \a s to use.1599 * @param s_n The number of characters of \a s to use.
1600 * @return Returns this string.1600 * @return Returns this string.
1601 */1601 */
@@ -1611,7 +1611,7 @@
1611 * @param pos The position within this string to replace at.1611 * @param pos The position within this string to replace at.
1612 * @param n The number of characters to replace.1612 * @param n The number of characters to replace.
1613 * @param s The replacement string.1613 * @param s The replacement string.
1614 * @param s_pos The starting position is \a s.1614 * @param s_pos The starting position in \a s.
1615 * @param s_n The number of characters of \a s to use.1615 * @param s_n The number of characters of \a s to use.
1616 * @return Returns this string.1616 * @return Returns this string.
1617 */1617 */
16181618
=== modified file 'src/zorbaserialization/CMakeLists.txt'
--- src/zorbaserialization/CMakeLists.txt 2013-02-07 17:24:36 +0000
+++ src/zorbaserialization/CMakeLists.txt 2013-08-15 00:15:23 +0000
@@ -23,5 +23,4 @@
23 bin_archiver.cpp23 bin_archiver.cpp
24 serialize_basic_types.cpp24 serialize_basic_types.cpp
25 serialize_zorba_types.cpp25 serialize_zorba_types.cpp
26 base64impl.cpp
27 ) 26 )
2827
=== removed file 'src/zorbaserialization/base64impl.cpp'
--- src/zorbaserialization/base64impl.cpp 2013-02-07 17:24:36 +0000
+++ src/zorbaserialization/base64impl.cpp 1970-01-01 00:00:00 +0000
@@ -1,176 +0,0 @@
1/*
2 * Copyright 2006-2008 The FLWOR Foundation.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#include "stdafx.h"
17
18#include "zorbaserialization/base64impl.h"
19
20
21namespace zorba{
22 namespace serialization{
23
24////Base64
25
26const char Base64Impl::base64chars[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
27
28/*
29 Transform each 6 bits into a character
30
31 dataout len must be 8/6*datalen+2
32 return dataoutlen
33*/
34size_t
35Base64Impl::Encode(const unsigned char *datain, size_t datalen,
36 char *dataout)///pre-allocated at the right size
37{
38 unsigned char rembits6;
39 unsigned char rembits8;
40 unsigned char temp6;
41 unsigned char temp8;
42 unsigned int index;
43 char *orig_dataout = dataout;
44
45 temp6 = 0;
46 rembits6 = 6;
47 rembits8 = 8;
48 index = 0;
49 temp8 = datain[0];
50
51 while(index < datalen)
52 {
53 temp6 <<= 1;
54 if(temp8 & 0x80)
55 temp6 |= 1;
56 temp8 <<= 1;
57 rembits8--;
58 if(rembits8 == 0)
59 {
60 rembits8 = 8;
61 datain++;
62 temp8 = datain[0];
63 index++;
64 }
65 rembits6--;
66 if(rembits6 == 0)
67 {
68 rembits6 = 6;
69 dataout[0] = base64chars[temp6];
70 dataout++;
71 temp6 = 0;
72 }
73 }
74 if(rembits6 != 6)
75 {
76 temp6 <<= rembits6;
77 rembits6 = 0;
78 dataout[0] = base64chars[temp6];
79 dataout++;
80 }
81 if((datalen%3) == 1)
82 {
83 ///add two more 6bit bytes
84 dataout[0] = dataout[1] = '=';
85 dataout += 2;
86 }
87 if((datalen%3) == 2)
88 {
89 ///add two more 6bit bytes
90 dataout[0] = '=';
91 dataout++;
92 }
93 dataout[0] = 0;
94
95 return dataout - orig_dataout;
96}
97
98//static const char base64chars[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
99unsigned char
100Base64Impl::getChar6BitIndex(char c)
101{
102 if((c >= 'A') && (c <= 'Z'))
103 return c-'A';
104 if((c >= 'a') && (c <= 'z'))
105 return c-'a' + 'Z' - 'A' + 1;
106 if((c >= '0') && (c <= '9'))
107 return c-'0' + 'Z' - 'A' + 1 + 'z' - 'a' + 1;
108 if(c == '+')
109 return 62;
110 if(c == '/')
111 return 63;
112 return 0xFF;///special case for '='
113}
114
115/*
116 dataout must be pre-allocated for 6/8*datalen
117return dataoutlen
118*/
119size_t
120Base64Impl::Decode(const unsigned char *datain, size_t datalen,
121 unsigned char *dataout)
122{
123 unsigned char *orig_dataout = dataout;
124 unsigned char rembits6;
125 unsigned char rembits8;
126 unsigned char temp8;
127 unsigned char temp6;
128
129 rembits6 = 6;
130 rembits8 = 8;
131 temp8 = 0;
132 temp6 = getChar6BitIndex(datain[0]);
133
134 while(datalen)
135 {
136 temp8 <<= 1;
137 if(temp6 & 0x20)
138 temp8 |= 1;
139 temp6 <<= 1;
140 rembits8--;
141 if(rembits8 == 0)
142 {
143 dataout[0] = temp8;
144 dataout++;
145 rembits8 = 8;
146 temp8 = 0;
147 }
148 rembits6--;
149 if(rembits6 == 0)
150 {
151 do{
152 datain++;
153 datalen--;
154 }while(((datain[0] == '\r')||(datain[0] == '\n'))&&datalen);
155 if(!datalen)
156 break;
157 if(datain[0] == '=')
158 break;
159 temp6 = getChar6BitIndex(datain[0]);
160 if(temp6 > 0x40)
161 break;
162 rembits6 = 6;
163 }
164 }
165
166 if(rembits8 != 8)
167 {
168 ///something wrong here, but ignore partially written last byte at returning len
169 }
170
171 return dataout - orig_dataout;
172
173}
174
175}}
176/* vim:set et sw=2 ts=2: */
1770
=== removed file 'src/zorbaserialization/base64impl.h'
--- src/zorbaserialization/base64impl.h 2013-02-07 17:24:36 +0000
+++ src/zorbaserialization/base64impl.h 1970-01-01 00:00:00 +0000
@@ -1,40 +0,0 @@
1/*
2 * Copyright 2006-2008 The FLWOR Foundation.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#pragma once
17#ifndef ZORBA_BASE64_IMPLEMENTATION
18#define ZORBA_BASE64_IMPLEMENTATION
19
20#include <stdlib.h>
21
22namespace zorba{
23 namespace serialization{
24
25class Base64Impl
26{
27public:
28 static const char base64chars[];
29public:
30 static size_t Encode(const unsigned char *datain, size_t datalen,
31 char *dataout);///pre-allocated at the right size
32 static size_t Decode(const unsigned char *datain, size_t datalen,
33 unsigned char *dataout);
34protected:
35 static unsigned char getChar6BitIndex(char c);
36};
37
38}}
39#endif
40/* vim:set et sw=2 ts=2: */
410
=== modified file 'src/zorbaserialization/serialize_basic_types.cpp'
--- src/zorbaserialization/serialize_basic_types.cpp 2013-06-18 23:53:59 +0000
+++ src/zorbaserialization/serialize_basic_types.cpp 2013-08-15 00:15:23 +0000
@@ -20,7 +20,6 @@
2020
21#include "zorbaserialization/serialize_basic_types.h"21#include "zorbaserialization/serialize_basic_types.h"
22#include "zorbaserialization/archiver.h"22#include "zorbaserialization/archiver.h"
23#include "zorbaserialization/base64impl.h"
2423
25#include "zorbatypes/m_apm.h"24#include "zorbatypes/m_apm.h"
26#include "zorbatypes/float.h"25#include "zorbatypes/float.h"

Subscribers

People subscribed via source and target branches