Opened 15 years ago
Closed 15 years ago
#968 closed Bugs (fixed)
xml_grammar - incorrect define char
| Reported by: | anonymous | Owned by: | Robert Ramey |
|---|---|---|---|
| Milestone: | Component: | serialization | |
| Version: | Severity: | Problem | |
| Keywords: | Cc: |
Description
libs\serialization\src\xml_grammar.cpp, line 52. Now code:
Char = chset_t("\x9\xA\xD\x20-\xFF");
Need:
Char = chset_t("\x9\xA\xD\x20-\x7f\x80\x81-\xFF");
Change History (3)
comment:1 by , 15 years ago
| Owner: | set to |
|---|
comment:2 by , 15 years ago
| Status: | new → assigned |
|---|
comment:3 by , 15 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
Ill add this in anyway for the test rround
Note:
See TracTickets
for help on using tickets.

How is
Char = chset_t("\x9\xA\xD\x20-\xFF");
different than
Char = chset_t("\x9\xA\xD\x20-\x7f\x80\x81-\xFF");
?
Robert Ramey