Skip to content
This repository has been archived by the owner on Jun 10, 2018. It is now read-only.

Commit

Permalink
added "fori" cpp snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Sanders committed Jul 13, 2009
1 parent af264e8 commit 1c10d6a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion snippets/cpp.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ snippet cl
public:
$1 (${2:arguments});
virtual ~$1 ();

private:
${3:/* data */}
};
snippet fori
for (int ${2:i} = 0; $2 < ${1:count}; $2${3:++}) {
${4:/* code */}
}

0 comments on commit 1c10d6a

Please sign in to comment.