Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
a8ae8e9cd379b90d52d08d8e410964a31620d8ef
/
.
/
build_tests
/
gflags.cc
blob: 150e330f3428184ed15c16f1cbe840be5f8585a3 [
file
] [
log
] [
blame
]
Brian Silverman
fbe79b8
2015-09-12 15:10:54 -0400
[
diff
] [
blame
]
1
#include
"third_party/gflags/include/gflags/gflags.h"
2
3
DEFINE_int32
(
test_flag
,
0
,
"Test command-line flag"
);
4
5
int
main
()
{
6
return
FLAGS_test_flag
;
7
}