]> git.saurik.com Git - bison.git/commitdiff
(operator<<(std::ostream&, const Position&)):
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 7 Jul 2003 03:46:28 +0000 (03:46 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 7 Jul 2003 03:46:28 +0000 (03:46 +0000)
use s.empty() rather than s == "" to test for empty string; see
<http://mail.gnu.org/archive/html/bison-patches/2003-07/msg00003.html>
(trivial change)

data/lalr1.cc

index 0e33541eaf8f73e7543f2b402dce132cda37ecea..1ec45264ae21215f40b1947033a784d3c5f41ba9 100644 (file)
@@ -1019,7 +1019,7 @@ namespace yy
   inline std::ostream&
   operator<< (std::ostream& ostr, const Position& pos)
   {
   inline std::ostream&
   operator<< (std::ostream& ostr, const Position& pos)
   {
-    if (pos.filename != "")
+    if (!pos.filename.empty ())
       ostr << pos.filename << ':';
     return ostr << pos.line << '.' << pos.column;
   }
       ostr << pos.filename << ':';
     return ostr << pos.line << '.' << pos.column;
   }