• Hemant's avatar
    Fix warnings · 41a6a788
    Hemant authored
    Fixed these warnings:
    
    src/logging_unittest.cc: At global scope:
    src/logging_unittest.cc:1081:13: warning: 'void MyCheck(bool, bool)' defined but not used [-Wunused-function]
     static void MyCheck(bool a, bool b) {
                 ^~~~~~~
    src/logging_unittest.cc:1078:13: warning: 'void MyFatal()' defined but not used [-Wunused-function]
     static void MyFatal() {
                 ^~~~~~~
    41a6a788
Name
Last commit
Last update
.bazelci Add Bazel CI configuration
bazel copts are passed correctly when building w/o gflags
cmake cmake: renamed GFLAGS_NAMESPACE to GLOG_GFLAGS_NAMESPACE (#318)
doc fix glog.html link to gflags repository
m4 Run autoreconf on ubuntu precise
packages glog: release 0.3.5
src Fix warnings
.gitignore Build with Bazel.
AUTHORS Update AUTHORS and CONTRIBUTORS for PR#232
BUILD Hide certain header files from the cc_library().
CMakeLists.txt mingw-w64: check if localtime_r exists
CONTRIBUTING.md Add the typical Google contributors and authors files.
CONTRIBUTORS Update AUTHORS and CONTRIBUTORS for PR#232
COPYING A bug fix for Windows: Use GetSystemTimeAsFileTime instead of GetSystemTime. SYSTEMTIME's mSecond is not a unix time but like tm.tm_sec.
ChangeLog Release glog 0.3.3
INSTALL Fix regression of r23.
Makefile.am Compute base addresses from program headers while reading /proc/self/maps.
README Remove files generated by autotools
README.windows Update Windows readme for CMake
WORKSPACE Update gflags to latest master
autogen.sh generate an empty NEWS file (fixes #340)
configure.ac Fix username lookup in case of missing USER environment variable
glog-config.cmake.in cmake: do not introduce a policy stack in the package config
libglog.pc.in Generation of pkg-config metadata file.
ltmain.sh Run autoreconf on ubuntu precise
This repository contains a C++ implementation of the Google logging
module.  Documentation for the implementation is in doc/.

See INSTALL for (generic) installation instructions for C++: basically
   ./autogen.sh && ./configure && make && make install