Update to C and C++ snippets

This commit is contained in:
Yannick Reiß 2023-08-26 08:10:04 +02:00
parent a4bd9d253b
commit d71dad52bf
No known key found for this signature in database
GPG Key ID: 5A3AF456F0A0338C
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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: