Created
October 27, 2013 17:55
-
-
Save deltaluca/7185704 to your computer and use it in GitHub Desktop.
This file contains 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
... | |
const std::vector<Component> components; | |
template <typename C> | |
Product( | |
typename std::enable_if< | |
std::is_same<std::decay<C>::type, std::vector<Component>>::value, | |
C | |
>::type&& components): | |
components(std::forward<C>(components)) | |
{ | |
} | |
Product(Product<Dim>&&) = default; | |
Product(const Product<Dim>&) = default; | |
... |
Author
deltaluca
commented
Oct 27, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment