1. 15 Jul, 2015 4 commits
  2. 18 Mar, 2015 1 commit
  3. 16 Mar, 2015 1 commit
  4. 13 Mar, 2015 1 commit
  5. 11 Mar, 2015 1 commit
  6. 10 Mar, 2015 1 commit
  7. 09 Mar, 2015 1 commit
  8. 19 Aug, 2014 1 commit
    • 's avatar
      Fixes for the latest MSVS. · 78da3bf8
      authored
      - ssize_t
      Since Windows does not have ssize_t, we need to include BaseTsd.h and
      use SSIZE_t instead.
      
      - include algorithm
      MSVS 2013 requests developers to include algorithm when they use
      std::min.
      
      By yyanagisawa
      
      
      
      git-svn-id: https://google-glog.googlecode.com/svn/trunk@143 eb4d4688-79bd-11dd-afb4-1d65580434c0
      78da3bf8
  9. 05 Mar, 2014 1 commit
  10. 02 Mar, 2014 1 commit
  11. 01 Mar, 2014 1 commit
  12. 31 Oct, 2013 2 commits
  13. 29 Jul, 2013 1 commit
  14. 29 May, 2013 1 commit
  15. 18 Feb, 2013 2 commits
  16. 01 Feb, 2013 3 commits
  17. 31 Jan, 2013 3 commits
  18. 25 Jan, 2013 3 commits
  19. 23 Jan, 2013 2 commits
  20. 22 Jan, 2013 1 commit
  21. 10 Jan, 2013 2 commits
  22. 09 Jan, 2013 3 commits
  23. 22 Nov, 2012 1 commit
  24. 17 Jul, 2012 1 commit
  25. 12 Jul, 2012 1 commit
    • 's avatar
      Reduce compiler warnings on Windows and MacOSX · 4f6088bc
      authored
      DCHECK* causes "warning C4127: conditional expression is constant".
      
      If compiled with -DWIN32_LEAN_AND_MEAN,
      port.h: warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition.
      
      On MacOSX,
      warning: "_END_GOOGLE_NAMESPACE_" redefined
      warning: "_START_GOOGLE_NAMESPACE_" redefined
      because config.h is included
       from base/commandlineflags.h:51
       from logging.cc:60
      and
       from utilities.h:81
       from logging.cc:32
      or so.
      
      Contributed by ukai@
      
      
      
      git-svn-id: https://google-glog.googlecode.com/svn/trunk@114 eb4d4688-79bd-11dd-afb4-1d65580434c0
      4f6088bc