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 | 8478ed5d18c2ce0db189bb274d74b351eb3ae659 (patch) | |
| tree | 8e35d17187b8b3cbe096210c97ba03043d71c8d8 /llvm/utils | |
| parent | 8cdc2e05905a60cebf24c10e02174c52ee8e22b8 (diff) | |
| download | bcm5719-llvm-8478ed5d18c2ce0db189bb274d74b351eb3ae659.tar.gz bcm5719-llvm-8478ed5d18c2ce0db189bb274d74b351eb3ae659.zip | |
Remove superfluous 'extern' variable that was causing a warning with clang.
llvm-svn: 91552
Diffstat (limited to 'llvm/utils')
| -rw-r--r-- | llvm/utils/unittest/googletest/gtest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/unittest/googletest/gtest.cc b/llvm/utils/unittest/googletest/gtest.cc index e46e90a2c47..b5a654f18bb 100644 --- a/llvm/utils/unittest/googletest/gtest.cc +++ b/llvm/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 |

