summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2014-05-06 18:27:37 +0000
committerRui Ueyama <ruiu@google.com>2014-05-06 18:27:37 +0000
commitd9769417042fbc604271eedd1b22a6770203559f (patch)
tree67759489e3bb63d7c032f41438dee581f2467de9
parent27169ce309f40fd7f403d48d87d30545da7acec3 (diff)
downloadbcm5719-llvm-d9769417042fbc604271eedd1b22a6770203559f.tar.gz
bcm5719-llvm-d9769417042fbc604271eedd1b22a6770203559f.zip
Remove meaningless return value in test.
llvm-svn: 208112
-rw-r--r--lld/unittests/DriverTests/InputGraphTest.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lld/unittests/DriverTests/InputGraphTest.cpp b/lld/unittests/DriverTests/InputGraphTest.cpp
index 1d8e16d1e7b..6b88a885a70 100644
--- a/lld/unittests/DriverTests/InputGraphTest.cpp
+++ b/lld/unittests/DriverTests/InputGraphTest.cpp
@@ -49,9 +49,8 @@ public:
}
/// Process the input Elemenet
- virtual bool addElement(std::unique_ptr<InputElement> element) {
+ void addElement(std::unique_ptr<InputElement> element) {
_expandElements.push_back(std::move(element));
- return true;
}
private:
OpenPOWER on IntegriCloud