| Index: tonic/float32_list.cc
|
| diff --git a/tonic/float32_list.cc b/tonic/float32_list.cc
|
| index 6bcfc7a4272585056830ea7993f99a174a4f68fd..38e67e5150501a228c4de084016cde892d6c1daf 100644
|
| --- a/tonic/float32_list.cc
|
| +++ b/tonic/float32_list.cc
|
| @@ -2,6 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include "base/logging.h"
|
| #include "tonic/dart_error.h"
|
| #include "tonic/float32_list.h"
|
|
|
| @@ -16,7 +17,7 @@ Float32List::Float32List(Dart_Handle list)
|
| Dart_TypedDataAcquireData(
|
| list, &type, reinterpret_cast<void**>(&data_), &num_elements_);
|
| DCHECK(!LogIfError(list));
|
| - ASSERT(type == Dart_TypedData_kFloat32);
|
| + DCHECK(type == Dart_TypedData_kFloat32);
|
| }
|
|
|
| Float32List::Float32List(Float32List&& other)
|
|
|