Remove extra "extern" qualifier

Fix cling.exp : error LNK2001: unresolved external symbol "char const * const cling::valuePrinterInternal::kEmptyCollection"
This commit is contained in:
Bertrand Bellenot 2016-12-01 11:49:10 +01:00 committed by sftnight
parent 772be9c0e7
commit 43c8a82180

View File

@ -47,7 +47,7 @@ extern "C" void cling_PrintValue(void * /*cling::Value**/ V) {
// Exported for RuntimePrintValue.h
namespace cling {
namespace valuePrinterInternal {
extern const char* const kEmptyCollection = "{}";
const char* const kEmptyCollection = "{}";
}
}