Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
G
gflags
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
gflags
Commits
8f2c22a0
Commit
8f2c22a0
authored
Nov 25, 2016
by
Andreas Schuh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "enh: Rename private sources, include public headers with rel path"
parent
ea6144e2
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
12 deletions
+13
-12
CMakeLists.txt
CMakeLists.txt
+2
-2
gflags.cc
src/gflags.cc
+1
-1
gflags.h.in
src/gflags.h.in
+1
-1
gflags_completions.cc
src/gflags_completions.cc
+6
-4
gflags_reporting.cc
src/gflags_reporting.cc
+2
-2
mutex.h
src/mutex.h
+1
-1
util.h
src/util.h
+0
-1
No files found.
CMakeLists.txt
View file @
8f2c22a0
...
...
@@ -350,8 +350,8 @@ set (PRIVATE_HDRS
set
(
GFLAGS_SRCS
"gflags.cc"
"reporting.cc"
"completions.cc"
"
gflags_
reporting.cc"
"
gflags_
completions.cc"
)
if
(
OS_WINDOWS
)
...
...
src/gflags.cc
View file @
8f2c22a0
...
...
@@ -88,7 +88,7 @@
// are, similarly, mostly hooks into the functionality described above.
#include "config.h"
#include "gflags
/gflags
.h"
#include "gflags.h"
#include <assert.h>
#include <ctype.h>
...
...
src/gflags.h.in
View file @
8f2c22a0
...
...
@@ -81,7 +81,7 @@
#include <string>
#include <vector>
#include "gflags
/gflags
_declare.h" // IWYU pragma: export
#include "gflags_declare.h" // IWYU pragma: export
// We always want to export variables defined in user code
...
...
src/completions.cc
→
src/
gflags_
completions.cc
View file @
8f2c22a0
...
...
@@ -46,6 +46,11 @@
// 5a) Force bash to place most-relevent groups at the top of the list
// 5b) Trim most flag's descriptions to fit on a single terminal line
#include "gflags_completions.h"
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h> // for strlen
...
...
@@ -55,12 +60,9 @@
#include <utility>
#include <vector>
#include "
config
.h"
#include "
gflags
.h"
#include "util.h"
#include "gflags/gflags.h"
#include "gflags/gflags_completions.h"
using
std
::
set
;
using
std
::
string
;
using
std
::
vector
;
...
...
src/reporting.cc
→
src/
gflags_
reporting.cc
View file @
8f2c22a0
...
...
@@ -56,8 +56,8 @@
#include <vector>
#include "config.h"
#include "gflags
/gflags
.h"
#include "gflags
/gflags
_completions.h"
#include "gflags.h"
#include "gflags_completions.h"
#include "util.h"
...
...
src/mutex.h
View file @
8f2c22a0
...
...
@@ -106,7 +106,7 @@
#ifndef GFLAGS_MUTEX_H_
#define GFLAGS_MUTEX_H_
#include "gflags
/gflags
_declare.h" // to figure out pthreads support
#include "gflags_declare.h" // to figure out pthreads support
#if defined(NO_THREADS)
typedef
int
MutexType
;
// to keep a lock-count
...
...
src/util.h
View file @
8f2c22a0
...
...
@@ -35,7 +35,6 @@
#define GFLAGS_UTIL_H_
#include "config.h"
#include "gflags/gflags_declare.h" // GFLAGS_NAMESPACE
#include <assert.h>
#ifdef HAVE_INTTYPES_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment