Switch this code to a more idiomatic double using namespace directive.
Fix a truly odd namespace qualifier that was flat out wrong in the
process. The fully qualified namespace would have been
llvm::sys::TimeValue, llvm::TimeValue makes no sense.
llvm-svn: 171292
diff --git a/llvm/lib/Support/Process.cpp b/llvm/lib/Support/Process.cpp
index 6e24c45..1e21d64 100644
--- a/llvm/lib/Support/Process.cpp
+++ b/llvm/lib/Support/Process.cpp
@@ -15,7 +15,7 @@
#include "llvm/Support/Process.h"
#include "llvm/Support/ErrorHandling.h"
-namespace llvm {
+using namespace llvm;
using namespace sys;
//===----------------------------------------------------------------------===//
@@ -54,7 +54,6 @@
#pragma warning(pop)
#endif
-}
// Include the platform-specific parts of this class.
#ifdef LLVM_ON_UNIX