Include Missing Libraries (#2193)

For better:
	`<iterator>` for `std::reverse_iterator`
	`Optional.h` for `llvm::Optional`
This commit is contained in:
micttyl
2022-09-19 11:22:01 -07:00
committed by GitHub
parent c8faa47f83
commit 57cc4c6dec
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -30,6 +30,7 @@ cc_library(
deps = [
"//common:check",
"//toolchain/parser:parse_tree",
"@llvm-project//llvm:Support",
],
)
@@ -5,6 +5,9 @@
#ifndef CARBON_TOOLCHAIN_SEMANTICS_PARSE_SUBTREE_CONSUMER_H_
#define CARBON_TOOLCHAIN_SEMANTICS_PARSE_SUBTREE_CONSUMER_H_
#include <iterator>
#include "llvm/ADT/Optional.h"
#include "toolchain/parser/parse_tree.h"
namespace Carbon {