This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright Dave Abrahams 2012. Distributed under the Boost | |
| // Software License, Version 1.0. (See accompanying | |
| // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | |
| template<class...Fs> struct overloaded; | |
| template<class F1, class...Fs> | |
| struct overloaded<F1, Fs...> : F1, overloaded<Fs...>::type | |
| { | |
| typedef overloaded type; |