]> git.lyx.org Git - lyx.git/blobdiff - src/tabular_funcs.C
Fix fuer #209
[lyx.git] / src / tabular_funcs.C
index 724a90ae07741f4a7469647430c2ae85e471c87d..72d28384a481154535b225a8c1d5b5c3aa733f94 100644 (file)
@@ -22,6 +22,7 @@
 #include "support/LIstream.h"
 
 using std::istream;
+using std::getline;
 
 // Perfect case for a template... (Lgb)
 // or perhaps not...
@@ -229,7 +230,7 @@ void l_getline(istream & is, string & str)
 {
        str.erase();
        while (str.empty()) {
-               std::getline(is, str);
+               getline(is, str);
                if (!str.empty() && str[str.length() - 1] == '\r')
                        str.erase(str.length() - 1);
        }