Rename TypeFlags and TypeFlag.

This CL updates TypeFlags and TypeFlag to drop the Type prefix.

Bug: tint:1718
Change-Id: Ia197c867e39102582ba3314b7b3f24d8bec89712
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/113801
Reviewed-by: Ben Clayton <bclayton@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
Commit-Queue: Dan Sinclair <dsinclair@chromium.org>
This commit is contained in:
dan sinclair
2022-12-12 21:26:23 +00:00
committed by Dawn LUCI CQ
parent f927bcb5a6
commit f6d95d3244
19 changed files with 35 additions and 38 deletions

View File

@@ -57,7 +57,7 @@ constexpr static const size_t kNumFixedCandidates = 8;
/// A special type that matches all TypeMatchers
class Any final : public Castable<Any, type::Type> {
public:
Any() : Base(type::TypeFlags{}) {}
Any() : Base(type::Flags{}) {}
~Any() override = default;
// Stub implementations for type::Type conformance.