Show
Ignore:
Timestamp:
09/30/08 18:56:07 (5 years ago)
Author:
nishio
Message:

/lang/cplusplus/debugprint small fix

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/cplusplus/debugprint/indented_debugprint.hpp

    r20221 r20293  
    2727Indenter indent; 
    2828   
    29 #define P(x) (std::string(#x) + ": " + common::repr(x)) 
     29#define P(x) (std::string(#x) + ": " + debugprint::common::repr(x)) 
    3030// debug print 
    3131#define DP(x) indent.indent() << P(x) << std::endl; indent.head_of_line = true; 
     
    3838#define END(x) indent.pop(); indent.indent() << "END " << P(x) << std::endl; 
    3939 
    40  
    4140} 
    4241