From 7050fc5d20cfea5678d260996044893ea1ba2684 Mon Sep 17 00:00:00 2001 From: ykiko Date: Thu, 23 Apr 2026 08:32:45 +0800 Subject: [PATCH] fix: update test to use new clang/Options path for LLVM 22.1 --- tests/unit/command/argument_parser_tests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/command/argument_parser_tests.cpp b/tests/unit/command/argument_parser_tests.cpp index ee9ae8c0..d8398cc1 100644 --- a/tests/unit/command/argument_parser_tests.cpp +++ b/tests/unit/command/argument_parser_tests.cpp @@ -1,7 +1,7 @@ #include "test/test.h" #include "command/argument_parser.h" -#include "clang/Driver/Options.h" +#include "clang/Options/Options.h" namespace clice::testing { @@ -9,7 +9,7 @@ namespace { TEST_SUITE(ArgumentParser) { -using option = clang::driver::options::ID; +using option = clang::options::ID; void EXPECT_ID(llvm::StringRef command, option opt) { auto id = get_option_id(command);