| Index: unittests/Support/StreamingMemoryObject.cpp
|
| diff --git a/unittests/Support/StreamingMemoryObject.cpp b/unittests/Support/StreamingMemoryObject.cpp
|
| index 399501ed35c23a9990a97035758f5593aab00621..4cdbba07f5f336a029286db2658cf0f5a1143bf1 100644
|
| --- a/unittests/Support/StreamingMemoryObject.cpp
|
| +++ b/unittests/Support/StreamingMemoryObject.cpp
|
| @@ -25,6 +25,7 @@ class NullDataStreamer : public DataStreamer {
|
|
|
| TEST(StreamingMemoryObject, Test) {
|
| auto *DS = new NullDataStreamer();
|
| - StreamingMemoryObject O(DS);
|
| + // @LOCALMOD -- Separated StreamingMemoryObject into interface + Impl.
|
| + StreamingMemoryObjectImpl O(DS);
|
| EXPECT_TRUE(O.isValidAddress(32 * 1024));
|
| }
|
|
|