ALPSCore reference
stringify.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 #ifndef ALPS_STRINGIFY_HPP
8 #define ALPS_STRINGIFY_HPP
9 
10 #define ALPS_STRINGIFY(arg) ALPS_STRINGIFY_HELPER(arg)
11 
12 #define ALPS_STRINGIFY_HELPER(arg) #arg
13 
14 #endif