Cosmetics: test/test_libvpx.cc
authorJohn Koleszar <jkoleszar@google.com>
Fri, 22 Jun 2012 18:53:04 +0000 (11:53 -0700)
committerJohn Koleszar <jkoleszar@google.com>
Fri, 22 Jun 2012 18:53:04 +0000 (11:53 -0700)
Itchy submit finger, incorporate review comments.

Change-Id: I7754ad825da32389510d1bfc967f542f0b1033ed

test/test_libvpx.cc

index 081919b..9bce60d 100644 (file)
@@ -14,8 +14,7 @@
 #endif
 #include "third_party/googletest/src/include/gtest/gtest.h"
 
-static void append_gtest_filter(const char *str)
-{
+static void append_gtest_filter(const char *str) {
   std::string filter = ::testing::FLAGS_gtest_filter;
   filter += str;
   ::testing::FLAGS_gtest_filter = filter;
@@ -25,7 +24,7 @@ int main(int argc, char **argv) {
   ::testing::InitGoogleTest(&argc, argv);
 
 #if ARCH_X86 || ARCH_X86_64
-  int simd_caps = x86_simd_caps();
+  const int simd_caps = x86_simd_caps();
   if(!(simd_caps & HAS_MMX))
     append_gtest_filter(":-MMX/*");
   if(!(simd_caps & HAS_SSE))