mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Remove dead private member variables from gtest.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158101 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
afc2657cc3
commit
955f938751
@ -203,7 +203,6 @@ class GTestFlagSaver {
|
||||
bool list_tests_;
|
||||
String output_;
|
||||
bool print_time_;
|
||||
bool pretty_;
|
||||
internal::Int32 random_seed_;
|
||||
internal::Int32 repeat_;
|
||||
bool shuffle_;
|
||||
|
@ -102,12 +102,11 @@
|
||||
// but still find raw_ostream& overloads.
|
||||
namespace llvm {
|
||||
class convertible_fwd_ostream : public std::ostream {
|
||||
std::ostream& os_;
|
||||
raw_os_ostream ros_;
|
||||
|
||||
public:
|
||||
convertible_fwd_ostream(std::ostream& os)
|
||||
: std::ostream(os.rdbuf()), os_(os), ros_(*this) {}
|
||||
: std::ostream(os.rdbuf()), ros_(*this) {}
|
||||
operator raw_ostream&() { return ros_; }
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user