author | zecke <zecke> | 2004-09-10 11:09:28 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-09-10 11:09:28 (UTC) |
commit | e64d9e9682e0afefc4fbebe7ba9737e0f86e3ed7 (patch) (unidiff) | |
tree | b3a931b24a7ad2f22ae8c774b0fc2e9eb69c0934 | |
parent | d7743f52d37979b3a3f95e8e85fdaad742e1f3c1 (diff) | |
download | opie-e64d9e9682e0afefc4fbebe7ba9737e0f86e3ed7.zip opie-e64d9e9682e0afefc4fbebe7ba9737e0f86e3ed7.tar.gz opie-e64d9e9682e0afefc4fbebe7ba9737e0f86e3ed7.tar.bz2 |
Fix warnings of '//' inside the comment
-rw-r--r-- | library/backend/stringutil.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/backend/stringutil.cpp b/library/backend/stringutil.cpp index b5fbd3e..f1ad1b9 100644 --- a/library/backend/stringutil.cpp +++ b/library/backend/stringutil.cpp | |||
@@ -61,7 +61,7 @@ static const char collationHack[] = { | |||
61 | 0x19, //C-Y | 61 | 0x19, //C-Y |
62 | 0x1a, //C-Z | 62 | 0x1a, //C-Z |
63 | 0x1b, //C-[ | 63 | 0x1b, //C-[ |
64 | 0x1c, //C-\ | 64 | 0x1c, /* C-\ */ |
65 | 0x1d, //C-] | 65 | 0x1d, //C-] |
66 | 0x1e, //C-^ | 66 | 0x1e, //C-^ |
67 | 0x1f, //C-_ | 67 | 0x1f, //C-_ |
@@ -125,7 +125,7 @@ static const char collationHack[] = { | |||
125 | 'Y', //Y | 125 | 'Y', //Y |
126 | 'Z', //Z | 126 | 'Z', //Z |
127 | '[', //[ | 127 | '[', //[ |
128 | '\\', //\ | 128 | '\\', /* \ */ |
129 | ']', //] | 129 | ']', //] |
130 | '^', //^ | 130 | '^', //^ |
131 | '_', //_ | 131 | '_', //_ |
@@ -189,7 +189,7 @@ static const char collationHack[] = { | |||
189 | 0x99, //C-M-Y | 189 | 0x99, //C-M-Y |
190 | 0x9a, //C-M-Z | 190 | 0x9a, //C-M-Z |
191 | 0x9b, //C-M-[ | 191 | 0x9b, //C-M-[ |
192 | 0x9c, //C-M-\ | 192 | 0x9c, /* C-M-\ */ |
193 | 0x9d, //C-M-] | 193 | 0x9d, //C-M-] |
194 | 0x9e, //C-M-^ | 194 | 0x9e, //C-M-^ |
195 | 0x9f, //C-M-_ | 195 | 0x9f, //C-M-_ |