Removed the "using eoMonitor::vec from eoGnuplot1DMonitor.h because it generated

an internal compiler error with gcc4.0.0.
Repalced all occurences of "vec" by "this->vec" in eoGnuplot1DMonitor.cpp
so it is understood by the compiler :-(
This commit is contained in:
evomarc 2005-11-08 11:34:12 +00:00
commit 14c3182200
2 changed files with 7 additions and 5 deletions

View file

@ -48,7 +48,9 @@ class eoGnuplot1DMonitor : public eoFileMonitor, public eoGnuplot
{
public:
using eoMonitor::vec;
// this "using" directive generates a compiler internal error in GCC 4.0.0 ...
// it's been removed, and the only call to vec was replaced by this->vec in eoGnuplot1DMonitor.cpp
// using eoMonitor::vec;
/** Constructor */
eoGnuplot1DMonitor(std::string _filename, bool _top=false) :