| Index: base/stack_container_unittest.cc
|
| diff --git a/base/stack_container_unittest.cc b/base/stack_container_unittest.cc
|
| index 798add73627b72fc5d457deb0d6ecdd4ff59385e..7efab363236c70c7bd3b26b72c638e7041a20707 100644
|
| --- a/base/stack_container_unittest.cc
|
| +++ b/base/stack_container_unittest.cc
|
| @@ -134,10 +134,5 @@ TEST(StackContainer, BufferAlignment) {
|
| #endif
|
| }
|
|
|
| -#ifdef COMPILER_MSVC
|
| -// Make sure all the class compiles correctly.
|
| -// TODO(pinkerton): i'm not sure why this doesn't compile on GCC, but
|
| -// it doesn't.
|
| -template StackVector<int, 2>;
|
| -template StackVector<scoped_refptr<Dummy>, 2>;
|
| -#endif
|
| +template class StackVector<int, 2>;
|
| +template class StackVector<scoped_refptr<Dummy>, 2>;
|
|
|