1. 27 Jun, 2017 1 commit
  2. 26 Jun, 2017 2 commits
  3. 12 May, 2017 2 commits
  4. 10 May, 2017 2 commits
  5. 09 May, 2017 8 commits
  6. 21 Apr, 2017 1 commit
  7. 20 Apr, 2017 1 commit
  8. 07 Mar, 2017 2 commits
  9. 09 Feb, 2017 1 commit
  10. 08 Feb, 2017 1 commit
    • Yoshisato Yanagisawa's avatar
      DCHECK_ALWAYS_ON to make D* enabled under NDEBUG · 027332ff
      Yoshisato Yanagisawa authored
      The macro NDEBUG could be automatically defined for release build on
      some build environments (e.g. MSVC).  If we use NDEBUG as a key to
      distinguish using DCHECK as CHECK (I call this DCHECK is enabled) or
      not, we cannot make DCHECK enabled for release build on such
      environments.
      
      Considering people use a program with glog for presubmit testing or
      dogfooding, they should need to do release build with DCHECK enabled.
      027332ff
  11. 20 Oct, 2016 1 commit
  12. 19 Oct, 2016 11 commits
  13. 07 Oct, 2016 2 commits
  14. 03 Oct, 2016 1 commit
  15. 11 Sep, 2016 1 commit
  16. 14 Jul, 2016 2 commits
  17. 23 Jun, 2016 1 commit
    • Peter Collingbourne's avatar
      Fix autotools build. · 8e98eb2a
      Peter Collingbourne authored
      It looks like commit 3c49b932 modified the auto-generated file src/config.h.in
      to add a definition of macro GOOGLE_GLOG_DLL_DECL. One of the autotools
      reverts this change upon running "make", causing the build to fail when a
      source file includes demangle.h.
      
      To fix the problem, revert the change to src/config.h.in and include
      glog/logging.h from demangle.h which provides a definition of that macro.
      8e98eb2a