diff options
author | Nick Kledzik <kledzik@apple.com> | 2013-11-21 00:20:10 +0000 |
---|---|---|
committer | Nick Kledzik <kledzik@apple.com> | 2013-11-21 00:20:10 +0000 |
commit | 4761c60eef46a9916b964395c0c68d51da7d3ae0 (patch) | |
tree | 37406aef24c16a5036643fe679d8b8d08cef3dd1 /llvm/lib/Support/YAMLTraits.cpp | |
parent | 90bcd114acc383276251a5685b67d26138a6eb83 (diff) | |
download | llvm-4761c60eef46a9916b964395c0c68d51da7d3ae0.zip llvm-4761c60eef46a9916b964395c0c68d51da7d3ae0.tar.gz llvm-4761c60eef46a9916b964395c0c68d51da7d3ae0.tar.bz2 |
revert r194655
llvm-svn: 195285
Diffstat (limited to 'llvm/lib/Support/YAMLTraits.cpp')
-rw-r--r-- | llvm/lib/Support/YAMLTraits.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/YAMLTraits.cpp b/llvm/lib/Support/YAMLTraits.cpp index 599a369..c32cbda 100644 --- a/llvm/lib/Support/YAMLTraits.cpp +++ b/llvm/lib/Support/YAMLTraits.cpp @@ -65,7 +65,7 @@ void Input::HNode::anchor() {} void Input::EmptyHNode::anchor() {} void Input::ScalarHNode::anchor() {} -bool Input::outputting() const { +bool Input::outputting() { return false; } @@ -406,7 +406,7 @@ Output::Output(raw_ostream &yout, void *context) Output::~Output() { } -bool Output::outputting() const { +bool Output::outputting() { return true; } |