[PPL-devel] [GIT] ppl/ppl(master): Fixed missing namespace.

Abramo Bagnara abramo.bagnara at gmail.com
Sun Feb 26 20:17:40 CET 2012


Module: ppl/ppl
Branch: master
Commit: eeb8c755e6c6092967511944881d24120a89fd93
URL:    http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=commit;h=eeb8c755e6c6092967511944881d24120a89fd93

Author: Abramo Bagnara <abramo.bagnara at gmail.com>
Date:   Sun Feb 26 20:17:36 2012 +0100

Fixed missing namespace.

---

 src/Row_Flags.cc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/Row_Flags.cc b/src/Row_Flags.cc
index 60063a4..cb4d758 100644
--- a/src/Row_Flags.cc
+++ b/src/Row_Flags.cc
@@ -35,7 +35,7 @@ PPL::Row_Flags::ascii_dump(std::ostream& s) const {
                                         std::ios::basefield);
   const std::streamsize new_sz
     = static_cast<std::streamsize>(2 * sizeof(Row_Flags::base_type));
-  s << std::setw(new_sz) << setfill('0') << bits;
+  s << std::setw(new_sz) << std::setfill('0') << bits;
   s.flags(old_flags);
 }
 




More information about the PPL-devel mailing list