(prevnet) Fix prevent issues 98/20298/1
authorKingsley Stephens <k.stephens@partner.samsung.com>
Tue, 22 Apr 2014 15:12:24 +0000 (16:12 +0100)
committerDavid Steele <david.steele@partner.samsung.com>
Thu, 1 May 2014 14:47:48 +0000 (15:47 +0100)
[Issue#]  N/A

[Problem] Prevent identified an issue

[Cause]   N/A

[Solution] Fix the issue to satisfy prevent

Change-Id: If7f195abad3254e7be50fa34a36d2875898a546f
Signed-off-by: David Steele <david.steele@partner.samsung.com>
adaptors/tizen/internal/command-line-options.cpp

index cc042a6..22a0af8 100644 (file)
@@ -24,6 +24,8 @@
 #include <iostream>
 #include <vector>
 
+using namespace std;
+
 namespace Dali
 {
 
@@ -42,11 +44,13 @@ struct Argument
 
   void Print()
   {
-    std::cout << std::left << "  --";
-    std::cout.width( 18 );
-    std::cout << opt;
-    std::cout << optDescription;
-    std::cout << std::endl;
+    const ios_base::fmtflags flags = cout.flags();
+    cout << left << "  --";
+    cout.width( 18 );
+    cout << opt;
+    cout << optDescription;
+    cout << endl;
+    cout.flags( flags );
   }
 };
 
@@ -73,11 +77,11 @@ enum Option
   OPTION_HELP
 };
 
-typedef std::vector< int > UnhandledContainer;
+typedef vector< int > UnhandledContainer;
 
 void ShowHelp()
 {
-  std::cout << "Available options:" << std::endl;
+  cout << "Available options:" << endl;
   Argument* arg = EXPECTED_ARGS;
   while ( arg->opt )
   {