Просмотр исходного кода

Fix missing APSInt include. (#3107)

Works by chance right now, but should be expected to break in future
LLVM versions.

The builtin kind include is removed as unused.
Jon Ross-Perkins 2 лет назад
Родитель
Сommit
2e290b9e73
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      toolchain/semantics/semantics_handle_index.cpp

+ 1 - 1
toolchain/semantics/semantics_handle_index.cpp

@@ -2,7 +2,7 @@
 // Exceptions. See /LICENSE for license information.
 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 
-#include "toolchain/semantics/semantics_builtin_kind.h"
+#include "llvm/ADT/APSInt.h"
 #include "toolchain/semantics/semantics_context.h"
 #include "toolchain/semantics/semantics_node.h"
 #include "toolchain/semantics/semantics_node_kind.h"