Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 5691

Show
Ignore:
Timestamp:
11/10/11 11:03:21 (7 months ago)
Author:
dhasenan
Message:

Oops. Fixing previous commit.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/util/log/Log.d

    r5690 r5691  
    920920        } 
    921921 
    922         private void formatWithDefaultBuffer(Level level, char[] fmt, TypeInfo[] types, ArgList args) 
     922        private void formatWithProvidedBuffer(Level level, char[] fmt, TypeInfo[] types, ArgList args) 
    923923        { 
    924924            formatWithBuffer(level, fmt, types, args, buffer_); 
     
    926926        } 
    927927 
    928         private void formatWithBuffer(Level level, char[] fmt, TypeInfo[] types, ArgList args
     928        private void formatWithBuffer(Level level, char[] fmt, TypeInfo[] types, ArgList args, char[] buf
    929929        { 
    930930            append (level, Format.vprint (buf, fmt, types, args));