diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-12-16 19:36:42 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-12-16 19:36:42 +0000 |
commit | 4e7896b88c383b5c64ddf574995fbafb4105884c (patch) | |
tree | cfd0d9a7117f81884813a7c5be6f5509c2c950f1 /utils | |
parent | 87450c87ff52d57481df9e6263f9a1b68cc8005a (diff) | |
download | external_llvm-4e7896b88c383b5c64ddf574995fbafb4105884c.zip external_llvm-4e7896b88c383b5c64ddf574995fbafb4105884c.tar.gz external_llvm-4e7896b88c383b5c64ddf574995fbafb4105884c.tar.bz2 |
Remove superfluous 'extern' variable that was causing a warning with clang.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91552 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/unittest/googletest/gtest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/unittest/googletest/gtest.cc b/utils/unittest/googletest/gtest.cc index e46e90a..b5a654f 100644 --- a/utils/unittest/googletest/gtest.cc +++ b/utils/unittest/googletest/gtest.cc @@ -532,7 +532,7 @@ TypeId GetTestTypeId() { // The value of GetTestTypeId() as seen from within the Google Test // library. This is solely for testing GetTestTypeId(). -extern const TypeId kTestTypeIdInGoogleTest = GetTestTypeId(); +const TypeId kTestTypeIdInGoogleTest = GetTestTypeId(); // This predicate-formatter checks that 'results' contains a test part // failure of the given type and that the failure message contains the |