-std=c++1y in Cling

Dear Root-Devs,

is it possible to start the ROOT-Interpreter with -std=c++1y ?

I ask because I wanted to experiment with some std::experimental features, e.g. “any”.

Cheers,
Jochen

Building ROOT with the option -Dcxx14=ON (CMake build) will allow you to use C++14 in the cling interpreter.

Thx!