From: Leandro Lucarella Date: Mon, 16 Aug 2010 15:41:54 +0000 (-0300) Subject: Remove unneeded static attribute X-Git-Url: https://git.llucax.com/software/dgc/cdgc.git/commitdiff_plain/b8d5524a8caf4feb1f02e5e7c8d59dfec7747045?ds=sidebyside;hp=27b5b707bcd280cd2cc4e2a2a5cc17eb4e06347a Remove unneeded static attribute --- diff --git a/rt/gc/cdgc/gc.d b/rt/gc/cdgc/gc.d index 3a925fc..cadda73 100644 --- a/rt/gc/cdgc/gc.d +++ b/rt/gc/cdgc/gc.d @@ -325,7 +325,7 @@ BlkInfo getInfo(void* p) /** * Compute bin for size. */ -static Bins findBin(size_t size) +Bins findBin(size_t size) { Bins bin; if (size <= 256)