$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r56832 - sandbox/itl/boost/validate/laws
From: afojgo_at_[hidden]
Date: 2009-10-14 12:22:55
Author: jofaber
Date: 2009-10-14 12:22:54 EDT (Wed, 14 Oct 2009)
New Revision: 56832
URL: http://svn.boost.org/trac/boost/changeset/56832
Log:
Full qualification for std identifiers
Text files modified: 
   sandbox/itl/boost/validate/laws/set_laws.hpp |    10 +++++-----                              
   1 files changed, 5 insertions(+), 5 deletions(-)
Modified: sandbox/itl/boost/validate/laws/set_laws.hpp
==============================================================================
--- sandbox/itl/boost/validate/laws/set_laws.hpp	(original)
+++ sandbox/itl/boost/validate/laws/set_laws.hpp	2009-10-14 12:22:54 EDT (Wed, 14 Oct 2009)
@@ -180,9 +180,9 @@
             Type val_a = this->template getInputValue<operand_a>();
             Type val_b = this->template getInputValue<operand_b>();
             Type val_c = this->template getInputValue<operand_c>();
-            cout << "a = " << val_a << endl;
-            cout << "b = " << val_b << endl;
-            cout << "c = " << val_c << endl;
+            std::cout << "a = " << val_a << std::endl;
+            std::cout << "b = " << val_b << std::endl;
+            std::cout << "c = " << val_c << std::endl;
             // --- left hand side ------------------------
             Type b_plus_c = val_b;
             Operator1<Type>()(b_plus_c, val_c);
@@ -194,11 +194,11 @@
             // --- right hand side -----------------------
             Type a_minus_b = this->template getInputValue<operand_a>();
             Subtraction<Type>()(a_minus_b, this->template getInputValue<operand_b>());
-            cout << "a-b = " << a_minus_b << endl;
+            std::cout << "a-b = " << a_minus_b << std::endl;
 
             Type a_minus_c = this->template getInputValue<operand_a>();
             Subtraction<Type>()(a_minus_c, this->template getInputValue<operand_c>());
-            cout << "a-c = " << a_minus_c << endl;
+            std::cout << "a-c = " << a_minus_c << std::endl;
 
             // rhs := (a - b) & (a - c)
             Type rhs = a_minus_b;