Fix compilation errors on Windows (constexpr is not known by standard MSVC compiler)

This commit is contained in:
Bertrand Bellenot 2014-10-02 14:38:33 +02:00 committed by sftnight
parent 6d7401e81f
commit a3b2f82dad

View File

@ -25,8 +25,8 @@
#include "cling/Interpreter/Transaction.h"
namespace {
constexpr const char annoTag[] = "$clingAutoload$";
constexpr const size_t lenAnnoTag = sizeof(annoTag) - 1;
static const char annoTag[] = "$clingAutoload$";
static const size_t lenAnnoTag = sizeof(annoTag) - 1;
}
using namespace clang;