1. 30 Jun, 2014 2 commits
  2. 27 Jun, 2014 1 commit
  3. 26 Jun, 2014 5 commits
  4. 25 Jun, 2014 3 commits
  5. 24 Jun, 2014 7 commits
  6. 23 Jun, 2014 6 commits
  7. 22 Jun, 2014 2 commits
  8. 20 Jun, 2014 5 commits
  9. 19 Jun, 2014 5 commits
  10. 18 Jun, 2014 3 commits
  11. 17 Jun, 2014 1 commit
    • Hans Johnson's avatar
      COMP: Fix problem with narrowing in c++11 · 4c7ed03b
      Hans Johnson authored
      modules/core/src/arithm.cpp:345:51:
      error: constant expression evaluates to 4294967295 which cannot be narrowed to type 'int' [-Wc++11-narrowing]
      static int CV_DECL_ALIGNED(16) v64f_absmask[] = { 0xffffffff, 0x7fffffff, 0xffffffff, 0x7fffffff };
                                                        ^~~~~~~~~~
      
      Converted to unsigned int.  This variable is only used to initialize a bit pattern anywhy for a 128bit type.
      4c7ed03b