Commit c29e3d73 authored by xiaomings@google.com's avatar xiaomings@google.com

Remove MSVC check in stack_container_unittest.


BUG=
TEST=Compile


Review URL: https://chromiumcodereview.appspot.com/10825048

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148846 0039d316-1c4b-4281-b951-d872f2087c98
parent 4054295c
...@@ -134,10 +134,5 @@ TEST(StackContainer, BufferAlignment) { ...@@ -134,10 +134,5 @@ TEST(StackContainer, BufferAlignment) {
#endif #endif
} }
#ifdef COMPILER_MSVC template class StackVector<int, 2>;
// Make sure all the class compiles correctly. template class StackVector<scoped_refptr<Dummy>, 2>;
// 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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment