We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8102aa0 commit cad4064Copy full SHA for cad4064
src/base/init_mozc.cc
@@ -87,7 +87,10 @@ std::string GetLogFilePathFromProgramName(const std::string &program_name) {
87
void ParseCommandLineFlags(int argc, char **argv) {
88
absl::flags_internal::ParseCommandLineImpl(
89
argc, argv,
90
+#if defined(ABSL_LTS_RELEASE_VERSION) && ABSL_LTS_RELEASE_VERSION < 20230802
91
+ // Abseil LTS 20230802 or later no longer use ArgvlistAction.
92
absl::flags_internal::ArgvListAction::kRemoveParsedArgs,
93
+#endif // ABSL_LTS_RELEASE_VERSION < 20230802
94
// Suppress help messages invoked by --help and others.
95
// Use UsageFlagsAction::kHandleUsage to enable it.
96
absl::flags_internal::UsageFlagsAction::kIgnoreUsage,
0 commit comments