Run ./tools/format
Change-Id: Icf1925cd3c862c4e29ba41f7d8470991ba4017f3 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/120721 Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com>
This commit is contained in:
parent
a79c6603b2
commit
650426b187
|
@ -41,8 +41,10 @@
|
||||||
|
|
||||||
// A helper macro for constructing a PromiseInfo with the current file, function and line.
|
// A helper macro for constructing a PromiseInfo with the current file, function and line.
|
||||||
// See PromiseInfo
|
// See PromiseInfo
|
||||||
#define PROMISE_INFO \
|
#define PROMISE_INFO \
|
||||||
::wgpu::interop::PromiseInfo { __FILE__, __FUNCTION__, __LINE__ }
|
::wgpu::interop::PromiseInfo { \
|
||||||
|
__FILE__, __FUNCTION__, __LINE__ \
|
||||||
|
}
|
||||||
|
|
||||||
namespace wgpu::interop {
|
namespace wgpu::interop {
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
namespace dawn::wire {
|
namespace dawn::wire {
|
||||||
|
|
||||||
enum class [[nodiscard]] WireResult{
|
enum class [[nodiscard]] WireResult {
|
||||||
Success,
|
Success,
|
||||||
FatalError,
|
FatalError,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue