1. 02 Oct, 2014 4 commits
  2. 01 Oct, 2014 4 commits
  3. 24 Sep, 2014 3 commits
  4. 23 Sep, 2014 1 commit
  5. 20 Sep, 2014 2 commits
  6. 19 Sep, 2014 2 commits
  7. 18 Sep, 2014 2 commits
  8. 17 Sep, 2014 2 commits
  9. 16 Sep, 2014 2 commits
    • Martin Hurton's avatar
      Merge pull request #1181 from whoshuu/patch-1 · 19712d3f
      Martin Hurton authored
      Fix non-constant-expression narrowing
      19712d3f
    • Huu Nguyen's avatar
      Fix non-constant-expression narrowing · 5642366f
      Huu Nguyen authored
      For OS X, the microseconds field is implemented as an int type. The implicit narrowing in the initializer list throws a compiler error for some compilers with C++11 support turned on. The specific error message is: "error: non-constant-expression cannot be narrowed from type 'long' to '__darwin_suseconds_t' (aka 'int') in initializer list [-Wc++11-narrowing]".
      
      Tested on Clang 5.1.0 and Mac OS X 10.9.4.
      5642366f
  10. 12 Sep, 2014 4 commits
  11. 11 Sep, 2014 2 commits
  12. 10 Sep, 2014 2 commits
  13. 04 Sep, 2014 1 commit
  14. 03 Sep, 2014 1 commit
  15. 31 Aug, 2014 3 commits
  16. 29 Aug, 2014 3 commits
  17. 27 Aug, 2014 2 commits
    • Martin Hurton's avatar
      Merge pull request #1171 from hintjens/master · 21e20127
      Martin Hurton authored
      Problem: nodrop code is ugly
      21e20127
    • Pieter Hintjens's avatar
      Problem: nodrop code is ugly · f15146b5
      Pieter Hintjens authored
      It's bad practice to start by testing all exceptional conditions
      and then dropping through to the 'normal' condition. Apart from
      being inefficient, it's deceptive to the user. Conditional code
      should always try to show the natural expectation of the code,
      with exceptional cases coming last.
      
      Solution: clean up this code.
      f15146b5