diff --git a/src/Series.cpp b/src/Series.cpp index 912b0db570..7201ecc276 100644 --- a/src/Series.cpp +++ b/src/Series.cpp @@ -133,6 +133,11 @@ std::string Series::openPMD() const Series &Series::setOpenPMD(std::string const &o) { + if (o >= "2.0") + { + std::cerr << "[Warning] openPMD 2.0 is still under development." + << std::endl; + } setAttribute("openPMD", o); return *this; }