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
ea6144e2
Commit
ea6144e2
authored
Nov 25, 2016
by
Andreas Schuh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enh: Rename private sources, include public headers with rel path
parent
86d67a3f
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
12 additions
and
13 deletions
+12
-13
CMakeLists.txt
CMakeLists.txt
+2
-2
completions.cc
src/completions.cc
+4
-6
gflags.cc
src/gflags.cc
+1
-1
gflags.h.in
src/gflags.h.in
+1
-1
mutex.h
src/mutex.h
+1
-1
reporting.cc
src/reporting.cc
+2
-2
util.h
src/util.h
+1
-0
No files found.
CMakeLists.txt
View file @
ea6144e2
...
...
@@ -350,8 +350,8 @@ set (PRIVATE_HDRS
set
(
GFLAGS_SRCS
"gflags.cc"
"
gflags_
reporting.cc"
"
gflags_
completions.cc"
"reporting.cc"
"completions.cc"
)
if
(
OS_WINDOWS
)
...
...
src/
gflags_
completions.cc
→
src/completions.cc
View file @
ea6144e2
...
...
@@ -46,11 +46,6 @@
// 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
...
...
@@ -60,9 +55,12 @@
#include <utility>
#include <vector>
#include "
gflags
.h"
#include "
config
.h"
#include "util.h"
#include "gflags/gflags.h"
#include "gflags/gflags_completions.h"
using
std
::
set
;
using
std
::
string
;
using
std
::
vector
;
...
...
src/gflags.cc
View file @
ea6144e2
...
...
@@ -88,7 +88,7 @@
// are, similarly, mostly hooks into the functionality described above.
#include "config.h"
#include "gflags.h"
#include "gflags
/gflags
.h"
#include <assert.h>
#include <ctype.h>
...
...
src/gflags.h.in
View file @
ea6144e2
...
...
@@ -81,7 +81,7 @@
#include <string>
#include <vector>
#include "gflags_declare.h" // IWYU pragma: export
#include "gflags
/gflags
_declare.h" // IWYU pragma: export
// We always want to export variables defined in user code
...
...
src/mutex.h
View file @
ea6144e2
...
...
@@ -106,7 +106,7 @@
#ifndef GFLAGS_MUTEX_H_
#define GFLAGS_MUTEX_H_
#include "gflags_declare.h" // to figure out pthreads support
#include "gflags
/gflags
_declare.h" // to figure out pthreads support
#if defined(NO_THREADS)
typedef
int
MutexType
;
// to keep a lock-count
...
...
src/
gflags_
reporting.cc
→
src/reporting.cc
View file @
ea6144e2
...
...
@@ -56,8 +56,8 @@
#include <vector>
#include "config.h"
#include "gflags.h"
#include "gflags_completions.h"
#include "gflags
/gflags
.h"
#include "gflags
/gflags
_completions.h"
#include "util.h"
...
...
src/util.h
View file @
ea6144e2
...
...
@@ -35,6 +35,7 @@
#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