Skip to content

Commit 13a9d15

Browse files
committedMar 15, 2023
comment everything but import asyncdispatch and threadpool
1 parent 442d971 commit 13a9d15

File tree

2 files changed

+110
-107
lines changed

2 files changed

+110
-107
lines changed
 

‎src/boat/private/FileManager.nim

+10-7
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,19 @@
33
## ===========
44
## Saving to and Retrieving from disk
55

6+
# valgrind throws if this file is imported into any other file
7+
import std/asyncdispatch # causes valgrind to throw
8+
import std/threadpool # causes valgrind to throw
9+
610
# import ../../../bdd
711

8-
# valgrind throws if this file is imported into ./Config.nim
9-
import std/[
10-
asyncdispatch, # causes valgrind to throw
11-
# locks,
12-
threadpool, # causes valgrind to throw
13-
]
12+
# import std/[
13+
# asyncdispatch,
14+
# locks,
15+
# threadpool,
16+
# ]
1417

15-
import BoatConstants, BoatErrors
18+
# import BoatConstants, BoatErrors
1619

1720
# export asyncdispatch
1821

‎testresults.html

+100-100
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.