Activity log for bug #1100358

Date Who What changed Old value New value Message
2013-01-16 16:30:15 Matt Jones bug added bug
2013-01-25 01:21:03 Matt Jones description Functions work like this: public bool to_bool(string value) { return value=="true" || value=="1"; } But they need to be changed to work with other string types: public bool to_bool(S)(S value) { return value=="true" || value=="1"; } Functions work like this: public bool to_bool(string value) {  return value=="true" || value=="1"; } But they need to be changed to work with other string types: public bool to_bool(S)(S value) if(isSomeString!S) {  return value=="true" || value=="1"; }
2013-01-25 01:25:36 Matt Jones dlanghelper: status Confirmed Fix Committed
2013-02-14 11:38:39 Matt Jones dlanghelper: status Fix Committed Fix Released