1. 30 Jan, 2016 3 commits
  2. 29 Jan, 2016 6 commits
  3. 25 Jan, 2016 1 commit
  4. 23 Jan, 2016 1 commit
  5. 13 Jan, 2016 3 commits
  6. 12 Jan, 2016 6 commits
  7. 10 Jan, 2016 1 commit
  8. 09 Jan, 2016 2 commits
  9. 08 Jan, 2016 2 commits
  10. 07 Jan, 2016 1 commit
  11. 06 Jan, 2016 3 commits
    • Michael Winterberg's avatar
      Fixed unknown pragma warnings for _BitScanReverse. · 28a303dd
      Michael Winterberg authored
      Changed to only define the MSVC implementations for clz and clzll if the builtins are not available to avoid warnings about an unknown #pragma for "intrinsic".
      28a303dd
    • Victor Zverovich's avatar
      Merge pull request #256 from mwinterb/clang_ms_clz · 39438034
      Victor Zverovich authored
      Fixed macro redefinition warnings when compiling with clang-cl.
      39438034
    • Michael Winterberg's avatar
      Fixed issues with MSVC emulations of clz and clzll. · 7185e96d
      Michael Winterberg authored
      Both clang-cl and Clang/C2 #define _MSC_VER but also have support for __builtin_clz and __builtin_clzll, leading to duplicate macro definition warnings. Emulation of clz using _BitScanReverse is suppressed if the builtins are already available.
      
      Additionally, the value of the output parameter of _BitScanReverse is undefined if the input value is 0, which is avoided by construction, so the code analysis warning for using uninitialized data is now suppressed.
      7185e96d
  12. 02 Jan, 2016 1 commit
  13. 24 Dec, 2015 3 commits
  14. 23 Dec, 2015 2 commits
  15. 20 Dec, 2015 2 commits
  16. 19 Dec, 2015 2 commits
  17. 18 Dec, 2015 1 commit