| Index: net/http2/http2_structures_test.cc
|
| diff --git a/net/http2/http2_structures_test.cc b/net/http2/http2_structures_test.cc
|
| index a87b3a0d6dc53587b53bf5799205f15787a00d10..cce65fe6174dbc6032ac15ce60b3550d252f0d95 100644
|
| --- a/net/http2/http2_structures_test.cc
|
| +++ b/net/http2/http2_structures_test.cc
|
| @@ -18,7 +18,6 @@
|
| #include <type_traits>
|
| #include <vector>
|
|
|
| -#include "base/template_util.h"
|
| #include "net/http2/http2_structures_test_util.h"
|
| #include "net/http2/tools/failure.h"
|
| #include "net/http2/tools/http2_random.h"
|
| @@ -42,7 +41,7 @@ namespace {
|
|
|
| template <typename E>
|
| E IncrementEnum(E e) {
|
| - typedef typename base::underlying_type<E>::type I;
|
| + using I = typename std::underlying_type<E>::type;
|
| return static_cast<E>(1 + static_cast<I>(e));
|
| }
|
|
|
|
|