| Index: base/win/scoped_comptr_unittest.cc
|
| diff --git a/base/win/scoped_comptr_unittest.cc b/base/win/scoped_comptr_unittest.cc
|
| index edfa8cfc6fafb63299afab33e5f4c1c1982a62cf..523e9082c80f3f3d53bb3d4adc5d5500093277a4 100644
|
| --- a/base/win/scoped_comptr_unittest.cc
|
| +++ b/base/win/scoped_comptr_unittest.cc
|
| @@ -26,12 +26,6 @@ struct Dummy {
|
| int releases;
|
| };
|
|
|
| -extern const IID dummy_iid;
|
| -const IID dummy_iid = {0x12345678u,
|
| - 0x1234u,
|
| - 0x5678u,
|
| - {01, 23, 45, 67, 89, 01, 23, 45}};
|
| -
|
| } // namespace
|
|
|
| TEST(ScopedComPtrTest, ScopedComPtr) {
|
| @@ -56,7 +50,7 @@ TEST(ScopedComPtrTest, ScopedComPtr) {
|
|
|
| TEST(ScopedComPtrTest, ScopedComPtrVector) {
|
| // Verify we don't get error C2558.
|
| - typedef ScopedComPtr<Dummy, &dummy_iid> Ptr;
|
| + typedef ScopedComPtr<Dummy> Ptr;
|
| std::vector<Ptr> bleh;
|
|
|
| std::unique_ptr<Dummy> p(new Dummy);
|
|
|