$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Jonathan Turkanis (technews_at_[hidden])
Date: 2005-07-20 12:34:25
Ovanes Markarian wrote:
> Hello all,
>
> I am using wide characters from the Xerces-C library. These are
> defined as always being a 2 bytes characters by:
>
> typedef short XMLCh; // can be also defined through the #define
> preprocessor directive I don't remember it
Actually, in 2.6.0 it's
typedef unsigned short XMLCh;
The source files in xecresc/util/Compilers contain comments saying that XMLCh is
now unsigned short on all platforms.
Jonathan