I noticed that zc-istream.txx won't compile with the LLVM. An error is
reported at:
Method: init ()
Line: 35
Code: setg (b, b, e);
To fix this compile time issue I changed the code to:
this->setg (b, b, e);
Barrie