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

Changeset 3001

Show
Ignore:
Timestamp:
12/09/07 12:57:51 (1 year ago)
Author:
kris
Message:

Had to rename one method to avoid collision errors

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/text/convert/Layout.d

    r2977 r3001  
    7676        public final T[] sprint (T[] result, T[] formatStr, ...) 
    7777        { 
    78                 return sprint (result, formatStr, _arguments, _argptr); 
    79         } 
    80  
    81         /********************************************************************** 
    82  
    83         **********************************************************************/ 
    84  
    85         public final T[] sprint (T[] result, T[] formatStr, TypeInfo[] arguments, ArgList args) 
     78                return vprint (result, formatStr, _arguments, _argptr); 
     79        } 
     80 
     81        /********************************************************************** 
     82 
     83        **********************************************************************/ 
     84 
     85        public final T[] vprint (T[] result, T[] formatStr, TypeInfo[] arguments, ArgList args) 
    8686        { 
    8787                T* p = result.ptr; 
     
    9696                           } 
    9797                        else 
    98                            error ("Layout.sprint :: output buffer is full"); 
     98                           error ("Layout.vprint :: output buffer is full"); 
    9999                        return len; 
    100100                }