Cleanup some includes
Change-Id: I4f6a871cb38a2af53583c582831990c2d76e38b4 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/35102 Commit-Queue: dan sinclair <dsinclair@chromium.org> Reviewed-by: Ben Clayton <bclayton@google.com> Auto-Submit: dan sinclair <dsinclair@chromium.org>
This commit is contained in:
parent
1e0472cdba
commit
d8591088fb
|
@ -15,8 +15,6 @@
|
||||||
#ifndef SRC_AST_ARRAY_DECORATION_H_
|
#ifndef SRC_AST_ARRAY_DECORATION_H_
|
||||||
#define SRC_AST_ARRAY_DECORATION_H_
|
#define SRC_AST_ARRAY_DECORATION_H_
|
||||||
|
|
||||||
#include <memory>
|
|
||||||
#include <string>
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "src/ast/decoration.h"
|
#include "src/ast/decoration.h"
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
#ifndef SRC_AST_INT_LITERAL_H_
|
#ifndef SRC_AST_INT_LITERAL_H_
|
||||||
#define SRC_AST_INT_LITERAL_H_
|
#define SRC_AST_INT_LITERAL_H_
|
||||||
|
|
||||||
#include <string>
|
|
||||||
|
|
||||||
#include "src/ast/literal.h"
|
#include "src/ast/literal.h"
|
||||||
|
|
||||||
namespace tint {
|
namespace tint {
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
#define SRC_AST_INTRINSIC_H_
|
#define SRC_AST_INTRINSIC_H_
|
||||||
|
|
||||||
#include <ostream>
|
#include <ostream>
|
||||||
#include <string>
|
|
||||||
|
|
||||||
namespace tint {
|
namespace tint {
|
||||||
namespace ast {
|
namespace ast {
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
#define SRC_AST_MEMBER_ACCESSOR_EXPRESSION_H_
|
#define SRC_AST_MEMBER_ACCESSOR_EXPRESSION_H_
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <string>
|
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
#include "src/ast/expression.h"
|
#include "src/ast/expression.h"
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
#include <string>
|
|
||||||
|
|
||||||
#include "src/ast/array_decoration.h"
|
#include "src/ast/array_decoration.h"
|
||||||
|
|
||||||
namespace tint {
|
namespace tint {
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
#ifndef SRC_AST_STRUCT_MEMBER_DECORATION_H_
|
#ifndef SRC_AST_STRUCT_MEMBER_DECORATION_H_
|
||||||
#define SRC_AST_STRUCT_MEMBER_DECORATION_H_
|
#define SRC_AST_STRUCT_MEMBER_DECORATION_H_
|
||||||
|
|
||||||
#include <memory>
|
|
||||||
#include <string>
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "src/ast/decoration.h"
|
#include "src/ast/decoration.h"
|
||||||
|
|
|
@ -17,8 +17,6 @@
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
#include <string>
|
|
||||||
|
|
||||||
#include "src/ast/struct_member_decoration.h"
|
#include "src/ast/struct_member_decoration.h"
|
||||||
|
|
||||||
namespace tint {
|
namespace tint {
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
#include "src/ast/type/texture_type.h"
|
#include "src/ast/type/texture_type.h"
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
#include <ostream>
|
||||||
|
|
||||||
#include "src/ast/type/multisampled_texture_type.h"
|
#include "src/ast/type/multisampled_texture_type.h"
|
||||||
#include "src/ast/type/sampled_texture_type.h"
|
#include "src/ast/type/sampled_texture_type.h"
|
||||||
|
|
|
@ -15,9 +15,6 @@
|
||||||
#ifndef SRC_AST_TYPE_TEXTURE_TYPE_H_
|
#ifndef SRC_AST_TYPE_TEXTURE_TYPE_H_
|
||||||
#define SRC_AST_TYPE_TEXTURE_TYPE_H_
|
#define SRC_AST_TYPE_TEXTURE_TYPE_H_
|
||||||
|
|
||||||
#include <ostream>
|
|
||||||
#include <string>
|
|
||||||
|
|
||||||
#include "src/ast/type/type.h"
|
#include "src/ast/type/type.h"
|
||||||
|
|
||||||
namespace tint {
|
namespace tint {
|
||||||
|
|
|
@ -15,9 +15,6 @@
|
||||||
#ifndef SRC_AST_TYPE_DECORATION_H_
|
#ifndef SRC_AST_TYPE_DECORATION_H_
|
||||||
#define SRC_AST_TYPE_DECORATION_H_
|
#define SRC_AST_TYPE_DECORATION_H_
|
||||||
|
|
||||||
#include <memory>
|
|
||||||
#include <ostream>
|
|
||||||
#include <string>
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "src/ast/decoration.h"
|
#include "src/ast/decoration.h"
|
||||||
|
|
|
@ -15,9 +15,6 @@
|
||||||
#ifndef SRC_AST_VARIABLE_DECORATION_H_
|
#ifndef SRC_AST_VARIABLE_DECORATION_H_
|
||||||
#define SRC_AST_VARIABLE_DECORATION_H_
|
#define SRC_AST_VARIABLE_DECORATION_H_
|
||||||
|
|
||||||
#include <memory>
|
|
||||||
#include <ostream>
|
|
||||||
#include <string>
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "src/ast/decoration.h"
|
#include "src/ast/decoration.h"
|
||||||
|
|
Loading…
Reference in New Issue