[lldb][NFC] Fix unsigned/signed comparison warning in SymbolFileDWARFTest.cpp
authorRaphael Isemann <teemperor@gmail.com>
Thu, 12 Mar 2020 14:30:10 +0000 (15:30 +0100)
committerRaphael Isemann <teemperor@gmail.com>
Thu, 12 Mar 2020 14:30:11 +0000 (15:30 +0100)
commite3fc6b3c346f583adbdb38b0935cc73439aaad99
treec010c7a24964f0930020ccea9d308372ed5d07af
parent8093e31e4e21ea08161587bdac81912d4e8bd7fd
[lldb][NFC] Fix unsigned/signed comparison warning in SymbolFileDWARFTest.cpp

offset_t is unsigned, so if the RHS is signed we get a warning from clang:
    warning: comparison of integers of different signs: 'const unsigned long long' and 'const int'
lldb/unittests/SymbolFile/DWARF/SymbolFileDWARFTests.cpp