aboutsummaryrefslogtreecommitdiff
path: root/third_party/abseil-cpp/absl/flags/flag_test_defs.cc
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2020-10-30 01:01:54 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2020-10-30 01:01:54 +0000
commitd3c2bcfd2d11b060b64adc1f6b871c5f9f5f1eef (patch)
tree3133f9c140bbc4072502804290a7e5527cbfb289 /third_party/abseil-cpp/absl/flags/flag_test_defs.cc
parentc0878c3bb984fbbb9fa7571bc6883b03d6bee7f1 (diff)
parent52a1dfcc4e46a55b001cee248be5710436e92820 (diff)
downloadwebrtc-d3c2bcfd2d11b060b64adc1f6b871c5f9f5f1eef.tar.gz
Snap for 6940725 from 52a1dfcc4e46a55b001cee248be5710436e92820 to sc-release
Change-Id: I641ef4a4553df38fc4049ced0e2551f2f15e3adc
Diffstat (limited to 'third_party/abseil-cpp/absl/flags/flag_test_defs.cc')
-rw-r--r--third_party/abseil-cpp/absl/flags/flag_test_defs.cc24
1 files changed, 24 insertions, 0 deletions
diff --git a/third_party/abseil-cpp/absl/flags/flag_test_defs.cc b/third_party/abseil-cpp/absl/flags/flag_test_defs.cc
new file mode 100644
index 0000000000..49f91dee39
--- /dev/null
+++ b/third_party/abseil-cpp/absl/flags/flag_test_defs.cc
@@ -0,0 +1,24 @@
+//
+// Copyright 2019 The Abseil Authors.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// https://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// This file is used to test the mismatch of the flag type between definition
+// and declaration. These are definitions. flag_test.cc contains declarations.
+#include <string>
+#include "absl/flags/flag.h"
+
+ABSL_FLAG(int, mistyped_int_flag, 0, "");
+ABSL_FLAG(std::string, mistyped_string_flag, "", "");
+ABSL_RETIRED_FLAG(bool, old_bool_flag, true,
+ "repetition of retired flag definition");