diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-12 18:08:02 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-08-12 18:08:02 +0200 |
| commit | 3556ba5007193bb1bee5577b1e33a82936af7fe5 (patch) | |
| tree | 3b3ee43cf1550b6b1df6c913a7a8b5894ffc52ef | |
| parent | 5fffbcde70ce50942dd2e263052c75bb1b9832ec (diff) | |
| download | allocbench-3556ba5007193bb1bee5577b1e33a82936af7fe5.tar.gz allocbench-3556ba5007193bb1bee5577b1e33a82936af7fe5.zip | |
fix scalloc definition
| -rw-r--r-- | src/allocators/scalloc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocators/scalloc.py b/src/allocators/scalloc.py index 4be8798..9114b31 100644 --- a/src/allocators/scalloc.py +++ b/src/allocators/scalloc.py @@ -9,7 +9,7 @@ scalloc_src = Allocator_Sources("scalloc", prepare_cmds=["git checkout {}".format(version), "cd {srcdir}; tools/make_deps.sh", "cd {srcdir}; build/gyp/gyp --depth=. scalloc.gyp"], - reset_cmds=["git reset --hard"] + reset_cmds=["git reset --hard"]) class Scalloc (Allocator): |
