Silicium
fast_variant.hpp
Go to the documentation of this file.
1 #ifndef SILICIUM_FAST_VARIANT_HPP
2 #define SILICIUM_FAST_VARIANT_HPP
3 
4 #include <silicium/variant.hpp>
5 
6 namespace Si
7 {
8 #ifndef SILICIUM_NO_DEPRECATED
9  //The name fast_variant is deprecated. You should use
10  //variant instead.
11  template <class ...T>
12  using fast_variant = variant<T...>;
13 #endif
14 }
15 
16 #endif
Definition: absolute_path.hpp:19
Definition: variant.hpp:612