~zorba-coders/zorba/feature-cloudant

« back to all changes in this revision

Viewing changes to src/types/typeimpl.cpp

  • Committer: Zorba Jenkins
  • Author(s): Paul J. Lucas
  • Date: 2013-07-23 20:21:13 UTC
  • mfrom: (10944.1.340 pjl-misc)
  • Revision ID: jenkins@lambda.nu-20130723202113-utnoo9ld8px6arbr
Added operator<< for enums; moved to .cpp.
Approved: Matthias Brantner, Paul J. Lucas

Show diffs side-by-side

added added

removed removed

Lines of Context:
744
744
********************************************************************************/
745
745
std::ostream& JSONXQType::serialize_ostream(std::ostream& os) const
746
746
{
747
 
  os << "[JSONXQType " << store::StoreConsts::toString(theJSONKind)
 
747
  os << "[JSONXQType " << theJSONKind
748
748
     << TypeOps::decode_quantifier(get_quantifier());
749
749
 
750
750
  return os << "]";