diff --git a/src/Series.cpp b/src/Series.cpp index fbbb8bf1bf..a3749c5e73 100644 --- a/src/Series.cpp +++ b/src/Series.cpp @@ -139,6 +139,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; }