mirror of
https://github.com/jdhao/nvim-config.git
synced 2025-06-08 14:14:33 +02:00
update cpp snippets
This commit is contained in:
parent
5bf969e327
commit
80893e7e4a
@ -2,11 +2,23 @@ snippet bare "barebone code template"
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <map>
|
||||
#inlcude <unordered_map>
|
||||
#include <set>
|
||||
#inlucde <unordered_set>
|
||||
#include <stack>
|
||||
#include <queue>
|
||||
|
||||
using std::cout;
|
||||
using std::endl;
|
||||
using std::vector;
|
||||
using std::string;
|
||||
using std::map;
|
||||
using std::unordered_map;
|
||||
using std::set;
|
||||
using std::unordered_set;
|
||||
using std::stack;
|
||||
using std::queue;
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user