ALPSCore reference
make_copy.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1998-2018 ALPS Collaboration. See COPYRIGHT.TXT
3  * All rights reserved. Use is subject to license terms. See LICENSE.TXT
4  * For use in publications, see ACKNOWLEDGE.TXT
5  */
6 
7 /* $Id$ */
8 
9 #ifndef ALPS_UTILITY_MAKE_COPY_HPP
10 #define ALPS_UTILITY_MAKE_COPY_HPP
11 
12 namespace alps {
13 
14 template<class T>
15 T make_copy(T const& x) { return x; }
16 
17 } // end namespace alps
18 
19 #endif // ALPS_UTILITY_MAKE_COPY_HPP
T make_copy(T const &x)
Definition: make_copy.hpp:15