Alexey Serbin has uploaded this change for review. (
http://gerrit.cloudera.org:8080/18202
Change subject: [tablet] fix compilation warning in rowset_info.cc
......................................................................
[tablet] fix compilation warning in rowset_info.cc
src/kudu/tablet/rowset_info.cc:207:21: warning: loop variable 'col_id' of type
'const kudu::ColumnId' creates a copy from type 'const kudu::ColumnId'
[-Wrange-loop-analysis]
for (const auto col_id : col_ids) {
^
src/kudu/tablet/rowset_info.cc:207:10: note: use reference type 'const
kudu::ColumnId &' to prevent copying
for (const auto col_id : col_ids) {
^~~~~~~~~~~~~~~~~~~
&
Change-Id: I25379f9764d7c6c6699740a06877301b624c1f54
---
M src/kudu/tablet/rowset_info.cc
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.cloudera.org:29418/kudu refs/changes/02/18202/1
--
To view, visit http://gerrit.cloudera.org:8080/18202
To unsubscribe, visit http://gerrit.cloudera.org:8080/settings
Gerrit-Project: kudu
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I25379f9764d7c6c6699740a06877301b624c1f54
Gerrit-Change-Number: 18202
Gerrit-PatchSet: 1
Gerrit-Owner: Alexey Serbin <[email protected]>