Search code examples
c++jupyterjupyter-labxeus-cling

Xplot for jupyter: "no template named decay_t in namespace std"


I am trying to include a couple xplot files, but I get this very cryptic error message: enter image description here
Does anyone know why? I have already installed xplot and xeus-cling via conda.


Solution

  • I have just solved this problem: it turns out std::decay_t is only supported in c++14 and later, so I switched my kernel to c++14 and now it works properly.