Remove anonymous namespace.
[oota-llvm.git] / utils / yaml2obj / yaml2obj.cpp
index a940f3085f9db9769035a4b4713429aa43324994..2f01d198600d7843b5167d66884ea207d20d1a89 100644 (file)
@@ -37,8 +37,6 @@ using namespace llvm;
 static cl::opt<std::string>
   Input(cl::Positional, cl::desc("<input>"), cl::init("-"));
 
-namespace {
-
 template<class T>
 typename llvm::enable_if_c<std::numeric_limits<T>::is_integer, bool>::type
 getAs(const llvm::yaml::ScalarNode *SN, T &Result) {
@@ -409,8 +407,6 @@ void writeCOFF(COFFParser &CP, raw_ostream &OS) {
   OS.write(&CP.StringTable[0], CP.StringTable.size());
 }
 
-}
-
 LLVM_YAML_IS_SEQUENCE_VECTOR(COFFYAML::Relocation)
 LLVM_YAML_IS_SEQUENCE_VECTOR(COFF::SectionCharacteristics)
 LLVM_YAML_IS_SEQUENCE_VECTOR(COFFYAML::Section)