diff options
author | Marius Kintel <marius@kintel.net> | 2012-01-08 01:45:58 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-01-09 23:01:50 (GMT) |
commit | 9d428bf51532cf42d36d99f5d029c6594bc90cb2 (patch) | |
tree | d1703265a8d471da3ad2fe87217979aaeb2dea22 /src/CGALCache.h | |
parent | fe3362faf825016606a8bcd60669c16965b0599c (diff) |
Compile fix
Diffstat (limited to 'src/CGALCache.h')
-rw-r--r-- | src/CGALCache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CGALCache.h b/src/CGALCache.h index 063fef5..ee4c6c3 100644 --- a/src/CGALCache.h +++ b/src/CGALCache.h @@ -8,7 +8,7 @@ class CGALCache { public: - CGALCache(size_t limit = 100*1024*1024) : cache(limit) {} + CGALCache(size_t limit = 100*1024*1024); static CGALCache *instance() { if (!inst) inst = new CGALCache; return inst; } |