blob: 6b0228845755727d265087c6264950875eff154b [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef LIB_FIT_FUNCTION_TRAITS_H_
#define LIB_FIT_FUNCTION_TRAITS_H_
#include "traits.h"
namespace fit {
// function_traits is deprecated, please use callable_traits
template <typename T>
using function_traits = callable_traits<T>;
} // namespace fit
#endif // LIB_FIT_FUNCTION_TRAITS_H_