blob: c41d3edc3f80f4a7dfac5c612b6c7ff3f7423f0b [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#ifndef ZIRCON_KERNEL_LIB_KTL_INCLUDE_KTL_MOVE_H_
#define ZIRCON_KERNEL_LIB_KTL_INCLUDE_KTL_MOVE_H_
#include <utility>
namespace ktl {
using std::forward;
using std::move;
} // namespace ktl
#endif // ZIRCON_KERNEL_LIB_KTL_INCLUDE_KTL_MOVE_H_