1 // Copyright 2018 The Fuchsia Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef LIB_FIT_FUNCTION_TRAITS_H_ 6 #define LIB_FIT_FUNCTION_TRAITS_H_ 7 8 #include "traits.h" 9 10 namespace fit { 11 12 // function_traits is deprecated, please use callable_traits 13 template <typename T> 14 using function_traits = callable_traits<T>; 15 16 } // namespace fit 17 18 #endif // LIB_FIT_FUNCTION_TRAITS_H_ 19