Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1972)

Unified Diff: device/bluetooth/bluetooth_device_win_unittest.cc

Issue 1513043002: clang/win: Let remaining chromium_code targets build with -Wextra. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: device/bluetooth/bluetooth_device_win_unittest.cc
diff --git a/device/bluetooth/bluetooth_device_win_unittest.cc b/device/bluetooth/bluetooth_device_win_unittest.cc
index c9d48a38652ed63fdb5312f86c6ac33aa4f8844b..0fb9d323c1926e1f8bc7b7af6963964ebabcb06b 100644
--- a/device/bluetooth/bluetooth_device_win_unittest.cc
+++ b/device/bluetooth/bluetooth_device_win_unittest.cc
@@ -86,12 +86,12 @@ class BluetoothDeviceWinTest : public testing::Test {
TEST_F(BluetoothDeviceWinTest, GetUUIDs) {
BluetoothDevice::UUIDList uuids = device_->GetUUIDs();
- EXPECT_EQ(2, uuids.size());
+ EXPECT_EQ(2u, uuids.size());
EXPECT_EQ(kTestAudioSdpUuid, uuids[0]);
EXPECT_EQ(kTestVideoSdpUuid, uuids[1]);
uuids = empty_device_->GetUUIDs();
- EXPECT_EQ(0, uuids.size());
+ EXPECT_EQ(0u, uuids.size());
}
TEST_F(BluetoothDeviceWinTest, IsEqual) {
« no previous file with comments | « device/bluetooth/bluetooth_adapter_win_unittest.cc ('k') | device/bluetooth/bluetooth_service_record_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698