Improve c++ snippet (for_cpp11)

This commit is contained in:
ujihisa 2014-01-09 22:11:49 -08:00
parent 4574119819
commit ee92ed6682
1 changed files with 1 additions and 7 deletions

View File

@ -41,13 +41,7 @@ abbr try catch
# range based for ( C++11 feature )
snippet for_CPP11
abbr for (:) {}
for (${1:#:var} : ${2:#:container}) {
${0:TARGET}
}
# range based for ( C++11 feature )
snippet for_CPP11_const_auto
for (const auto &${1:#:var} : ${2:#:container}) {
for (${1:auto&& }${2:var} : ${3:container}) {
${0:TARGET}
}