Fix build/include_order in include/dawn.
This CL moves a couple of the import statements around in order to make the build/include_order lint pass in include/dawn. Bug: dawn:1339 Change-Id: I0570d150e938ebd27beda3d9d1516491344999b2 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/86444 Auto-Submit: Dan Sinclair <dsinclair@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Dan Sinclair <dsinclair@chromium.org>
This commit is contained in:
parent
4d5723b5e5
commit
265761220b
|
@ -1,3 +1,2 @@
|
|||
filter=-build/include_order
|
||||
filter=-readability/inheritance
|
||||
filter=-runtime/indentation_namespace
|
||||
|
|
|
@ -15,13 +15,13 @@
|
|||
#ifndef INCLUDE_DAWN_PLATFORM_DAWNPLATFORM_H_
|
||||
#define INCLUDE_DAWN_PLATFORM_DAWNPLATFORM_H_
|
||||
|
||||
#include "dawn/platform/dawn_platform_export.h"
|
||||
#include <dawn/webgpu.h>
|
||||
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
|
||||
#include <dawn/webgpu.h>
|
||||
#include "dawn/platform/dawn_platform_export.h"
|
||||
|
||||
namespace dawn::platform {
|
||||
|
||||
|
|
|
@ -15,12 +15,12 @@
|
|||
#ifndef INCLUDE_DAWN_WIRE_WIRECLIENT_H_
|
||||
#define INCLUDE_DAWN_WIRE_WIRECLIENT_H_
|
||||
|
||||
#include "dawn/dawn_proc_table.h"
|
||||
#include "dawn/wire/Wire.h"
|
||||
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
#include "dawn/dawn_proc_table.h"
|
||||
#include "dawn/wire/Wire.h"
|
||||
|
||||
namespace dawn::wire {
|
||||
|
||||
namespace client {
|
||||
|
|
Loading…
Reference in New Issue