17 lines
587 B
C++
17 lines
587 B
C++
//--------------------------------------------------------------------*- C++ -*-
|
|
// CLING - the C++ LLVM-based InterpreterG :)
|
|
// author: Axel Naumann <axel@cern.ch>
|
|
//
|
|
// This file is dual-licensed: you can choose to license it under the University
|
|
// of Illinois Open Source License or the GNU Lesser General Public License. See
|
|
// LICENSE.TXT for details.
|
|
//------------------------------------------------------------------------------
|
|
|
|
#ifndef CLING_UTILS_H
|
|
#define CLING_UTILS_H
|
|
|
|
#define ClingStringify(s) ClingStringifyx(s)
|
|
#define ClingStringifyx(s) #s
|
|
|
|
#endif // CLING_UTILS_H
|