Add cpp specific include snippet
The standard inclusion template has been changed from "stdio.h" to iostream. In case of C++, the user most likely will work with STL containers/headers which by default don't require the ".h" extension.
This commit is contained in:
parent
cfb046a734
commit
d88a8c34b4
@ -1,5 +1,11 @@
|
|||||||
extends c
|
extends c
|
||||||
|
|
||||||
|
##
|
||||||
|
## Preprocessor
|
||||||
|
# #include <...>
|
||||||
|
snippet inc
|
||||||
|
#include <${1:iostream}>
|
||||||
|
##
|
||||||
## STL Collections
|
## STL Collections
|
||||||
# std::array
|
# std::array
|
||||||
snippet array
|
snippet array
|
||||||
|
Loading…
x
Reference in New Issue
Block a user