1. 10 Mar, 2015 1 commit
    • Philipp A. Hartmann's avatar
      GenericValue::AddMember<T>: add missing overload (closes #254) · 06c3ddba
      Philipp A. Hartmann authored
      As discovered by @felipegb94, there are missing overloads to the
      `GenericValue::AddMember<T>` template function, taking an explicit
      `GenericValue&` as a name and accepting arbitrary primitive values.
      
      This patch adds the missing overloads. The `StringRefType` overload
      is needed to disambiguate the addition of a string literal as
      value.
      
      Some tests are added to `TEST(Value, Object)` in `valuetest.cpp`.
      06c3ddba
  2. 25 Feb, 2015 1 commit
  3. 24 Feb, 2015 1 commit
  4. 23 Feb, 2015 3 commits
  5. 20 Feb, 2015 4 commits
  6. 18 Feb, 2015 2 commits
  7. 17 Feb, 2015 10 commits
  8. 15 Feb, 2015 1 commit
  9. 14 Feb, 2015 2 commits
  10. 12 Feb, 2015 1 commit
  11. 11 Feb, 2015 3 commits
  12. 08 Feb, 2015 2 commits
  13. 07 Feb, 2015 1 commit
  14. 03 Feb, 2015 1 commit
  15. 02 Feb, 2015 5 commits
  16. 25 Jan, 2015 1 commit
  17. 24 Jan, 2015 1 commit
    • Drew Noakes's avatar
      Use aligned SSE register load intrinsic. · 41f3c60b
      Drew Noakes authored
      The code goes to the trouble of ensuring that data is aligned at a
      16-byte boundary, then goes ahead and uses the unaligned form of the
      load intrinsic _mm_loadu_si128.
      
      Either the code shouldn't bother aligning the data to the start of the
      whitespace, or it should use the aligned form of the intrinsic.
      41f3c60b