summaryrefslogtreecommitdiffstats
path: root/src/testing.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-05 21:33:15 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-05 21:33:15 +0100
commit0d6f5d9740dbad1b0207f3ab257de806169dd905 (patch)
tree3b4d840ac6f3972bfab2599cc52555ce55d66eaa /src/testing.c
parent63d9e730f726341bf41ee4f4b829253cb9879110 (diff)
patch 8.1.2395: using old C style commentsv8.1.2395
Problem: Using old C style comments. Solution: Use // comments where appropriate.
Diffstat (limited to 'src/testing.c')
-rw-r--r--src/testing.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testing.c b/src/testing.c
index 7543dd88b1..f879f1ea9c 100644
--- a/src/testing.c
+++ b/src/testing.c
@@ -813,8 +813,8 @@ f_test_refcount(typval_T *argvars, typval_T *rettv)
void
f_test_garbagecollect_now(typval_T *argvars UNUSED, typval_T *rettv UNUSED)
{
- /* This is dangerous, any Lists and Dicts used internally may be freed
- * while still in use. */
+ // This is dangerous, any Lists and Dicts used internally may be freed
+ // while still in use.
garbage_collect(TRUE);
}