Add static_assert snippet

This commit is contained in:
Kenneth Benzie 2016-09-25 00:25:31 +01:00
parent 305cb40e52
commit 5e10057d59

View File

@ -60,3 +60,7 @@ endsnippet
snippet [] "Labmda function"
[$1]($2)${3/(.*)/(?1: -> ::)/}$3 {$0}
endsnippet
snippet static_assert "Static assert"
static_assert($1, "$2");
endsnippet