mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Resolve several missing declarations warnings
This commit is contained in:
parent
9db828953a
commit
4f100cb6a0
3 changed files with 4 additions and 1 deletions
|
@ -47,6 +47,8 @@
|
|||
// 5b) Trim most flag's descriptions to fit on a single terminal line
|
||||
|
||||
|
||||
#include "gflags_completions.h"
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
DECLARE_string(message); // in gflags_delcare_test.cc
|
||||
|
||||
void print_message();
|
||||
void print_message()
|
||||
{
|
||||
std::cout << FLAGS_message << std::endl;
|
||||
|
|
|
@ -1485,7 +1485,7 @@ TEST(FlagsValidator, FlagSaver) {
|
|||
|
||||
} // unnamed namespace
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
static int main(int argc, char **argv) {
|
||||
|
||||
// Run unit tests only if called without arguments, otherwise this program
|
||||
// is used by an "external" usage test
|
||||
|
|
Loading…
Add table
Reference in a new issue