Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/utility.h

    rc94b1f0 r8f06277  
    190190}
    191191
     192template< typename... Params >
     193void warn( const Params & ... params ) {
     194        std::cerr << "Warning: ";
     195        toString_single( std::cerr, params... );
     196        std::cerr << std::endl;
     197}
     198
    192199// determines if pref is a prefix of str
    193200static inline bool isPrefix( const std::string & str, const std::string & pref, unsigned int start = 0 ) {
Note: See TracChangeset for help on using the changeset viewer.