From f8d73192cc885bfa52c151cbe1c96ee91f0744d7 Mon Sep 17 00:00:00 2001 From: Manuel Klimek Date: Tue, 20 Dec 2011 09:26:26 +0000 Subject: Addressing style issues in JSON parser. llvm-svn: 146968 --- llvm/lib/Support/JSONParser.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'llvm/lib/Support/JSONParser.cpp') diff --git a/llvm/lib/Support/JSONParser.cpp b/llvm/lib/Support/JSONParser.cpp index 30c2afcdfc3..36da12d3764 100644 --- a/llvm/lib/Support/JSONParser.cpp +++ b/llvm/lib/Support/JSONParser.cpp @@ -1,4 +1,4 @@ -//===--- JsonParser.cpp - Simple JSON parser ------------------------------===// +//===--- JSONParser.cpp - Simple JSON parser ------------------------------===// // // The LLVM Compiler Infrastructure // @@ -16,7 +16,7 @@ #include "llvm/ADT/Twine.h" #include "llvm/Support/Casting.h" -namespace llvm { +using namespace llvm; JSONParser::JSONParser(StringRef Input) : Input(Input), Position(Input.begin()) {} @@ -217,5 +217,3 @@ template <> JSONValue *JSONParser::parseElement() { template <> JSONKeyValuePair *JSONParser::parseElement() { return parseKeyValuePair(); } - -} // end namespace llvm -- cgit v1.2.3