Introduce a string_ostream string builder facilty
[oota-llvm.git] / lib / Support / YAMLTraits.cpp
index 20f8b245c94267e3d2edfb09a001eb72305ae0a9..5212624f0cd3f1f6b7a86c1e836b0ea84976631b 100644 (file)
@@ -7,6 +7,7 @@
 //
 //===----------------------------------------------------------------------===//
 
+#include "llvm/Support/Errc.h"
 #include "llvm/Support/YAMLTraits.h"
 #include "llvm/ADT/Twine.h"
 #include "llvm/Support/Casting.h"
@@ -56,9 +57,7 @@ Input::Input(StringRef InputContent,
 Input::~Input() {
 }
 
-error_code Input::error() {
-  return EC;
-}
+std::error_code Input::error() { return EC; }
 
 // Pin the vtables to this file.
 void Input::HNode::anchor() {}