2016-10-20 10:27:10 +02:00

8 lines
120 B
Plaintext

# -*- mode: snippet -*-
# name: const_[]
# key: c[
# --
const ${1:Type}& operator[](${2:int index}) const
{
$0
}