diff --git a/Post/PViewDataIO.cpp b/Post/PViewDataIO.cpp index 16276972130d0a3d6832993d1f12d351f029f45d..9d3e79542c5068cc02f5c20b32e41ca360ece262 100644 --- a/Post/PViewDataIO.cpp +++ b/Post/PViewDataIO.cpp @@ -228,7 +228,7 @@ bool PViewData::fromVector(const std::vector<std::vector<double> > &vec) if(skipElement(step, ent, ele)) continue; for(int nod = 0; nod < getNumNodes(step, ent, ele); nod++){ double x, y, z; - int tag = getNode(step, ent, ele, nod, x, y, z); + getNode(step, ent, ele, nod, x, y, z); for(int comp = 0; comp < getNumComponents(step, ent, ele); comp++){ if(i < (int)vec[step].size()){ setValue(step, ent, ele, nod, comp, vec[step][i++]);