Update to C and C++ snippets
This commit is contained in:
parent
a4bd9d253b
commit
d71dad52bf
|
@ -50,7 +50,7 @@ snippet pfun "prototype for function" bA
|
|||
* @brief Description:
|
||||
* ${4: Description}
|
||||
* @param Parameter:`!p
|
||||
params = t[3].split(",")
|
||||
params = t[3].split(", ")
|
||||
rval = ""
|
||||
for param in params:
|
||||
if len(param.split(' ')) >= 2:
|
||||
|
|
|
@ -187,7 +187,7 @@ snippet pfun "prototype for function" bA
|
|||
* @brief Description:
|
||||
* ${4: Description}
|
||||
* @param Parameter:`!p
|
||||
params = t[3].split(",")
|
||||
params = t[3].split(", ")
|
||||
rval = ""
|
||||
for param in params:
|
||||
if len(param.split(' ')) >= 2:
|
||||
|
|
Loading…
Reference in New Issue