summaryrefslogtreecommitdiffstats
path: root/src/bin/dhcp6/tests/vendor_opts_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/dhcp6/tests/vendor_opts_unittest.cc')
-rw-r--r--src/bin/dhcp6/tests/vendor_opts_unittest.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/dhcp6/tests/vendor_opts_unittest.cc b/src/bin/dhcp6/tests/vendor_opts_unittest.cc
index 0cbc224752..593bf7b000 100644
--- a/src/bin/dhcp6/tests/vendor_opts_unittest.cc
+++ b/src/bin/dhcp6/tests/vendor_opts_unittest.cc
@@ -1692,7 +1692,7 @@ TEST_F(VendorOptsTest, twoVendors) {
ASSERT_EQ(2, classes.size());
OptionVendorClassPtr opt_class1234;
OptionVendorClassPtr opt_class5678;
- for (auto opt : classes) {
+ for (auto const& opt : classes) {
ASSERT_EQ(D6O_VENDOR_CLASS, opt.first);
OptionVendorClassPtr opt_class =
boost::dynamic_pointer_cast<OptionVendorClass>(opt.second);
@@ -1724,7 +1724,7 @@ TEST_F(VendorOptsTest, twoVendors) {
ASSERT_EQ(2, options.size());
OptionVendorPtr opt_opts1234;
OptionVendorPtr opt_opts5678;
- for (auto opt : options) {
+ for (auto const& opt : options) {
ASSERT_EQ(D6O_VENDOR_OPTS, opt.first);
OptionVendorPtr opt_opts =
boost::dynamic_pointer_cast<OptionVendor>(opt.second);
@@ -1861,7 +1861,7 @@ TEST_F(VendorOptsTest, threeVendors) {
OptionVendorPtr opt_opts1234;
OptionVendorPtr opt_docsis;
OptionVendorPtr opt_opts5678;
- for (auto opt : options) {
+ for (auto const& opt : options) {
ASSERT_EQ(D6O_VENDOR_OPTS, opt.first);
OptionVendorPtr opt_opts =
boost::dynamic_pointer_cast<OptionVendor>(opt.second);