1. 17 Apr, 2016 3 commits
  2. 16 Apr, 2016 9 commits
  3. 15 Apr, 2016 9 commits
  4. 06 Apr, 2016 4 commits
  5. 05 Apr, 2016 6 commits
  6. 04 Apr, 2016 1 commit
  7. 31 Mar, 2016 4 commits
  8. 29 Mar, 2016 1 commit
    • Jarred Nicholls's avatar
      Later clang compilers will warn on float -> double promotion because it can add… · 926d7ffc
      Jarred Nicholls authored
      Later clang compilers will warn on float -> double promotion because it can add precision. In the context of RapidJSON – especially with its float methods on GenericValue – I think this warning holds no water and should be ignored.
      
      Trim whitespace off the end of various lines.
      
      Added an additional NumberStream specialization that will always perform a TakePush() even when just Take() is called. This supports RawNumber parsing by pushing onto our StackStream particular parts of the number that currently aren't captured because of full precision double parsing, such as the negative sign, scientific number exponents, etc.
      
      RawNumber parsing fails with input streams that don't have copy optimization, such as the BasicIStreamWrapper stream. To work around this, instead do the Transcode copy operation by reading from a UTF8 StringStream instead of the original InputStream. Since the NumberStream downcasts all input Ch into chars, we know we're dealing with UTF8/ASCII compatible stack characters during the Transcoding.
      926d7ffc
  9. 26 Mar, 2016 1 commit
  10. 21 Mar, 2016 1 commit
  11. 20 Mar, 2016 1 commit
    • Nicholas Fraser's avatar
      Added trailing comma support to iterative parser · 68217548
      Nicholas Fraser authored
      This also fixes cases where the iterative parser should have produced
      kParseErrorValueInvalid rather than kParseErrorUnspecifiedSyntaxError
      when expecting a value (after a colon in an object, after a comma in an
      array, and at the start of an array.)
      68217548