From 85924cf953db56954bd7764e253b3e95983e58a7 Mon Sep 17 00:00:00 2001
From: James Turner <zakalawe@mac.com>
Date: Sun, 13 Nov 2011 21:27:55 +0000
Subject: [PATCH] Fix some Windows std:: namespace issues.

---
 src/Main/options.cxx | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/Main/options.cxx b/src/Main/options.cxx
index 5bd6820e6..00624af53 100644
--- a/src/Main/options.cxx
+++ b/src/Main/options.cxx
@@ -80,6 +80,7 @@ using std::cout;
 using std::cerr;
 using std::endl;
 using std::vector;
+using std::cin;
 
 #define NEW_DEFAULT_MODEL_HZ 120
 
@@ -2189,8 +2190,8 @@ void Options::showUsage() const
     cout << "For a complete list of options use --help --verbose" << endl;
   }
 #ifdef _MSC_VER
-  cout << "Hit a key to continue..." << endl;
-  cin.get();
+  std::cout << "Hit a key to continue..." << std::endl;
+  std::cin.get();
 #endif
 }