Skip to content
  • Vasil Dimov's avatar
    333edb00
    Fix Bug#19588190 REMOVE THE EMPTY LINE AFTER FUNCTION COMMENTS IN INNODB · 333edb00
    Vasil Dimov authored
    Remove the empty line between function comment and prototype/body.
    
    The patch was generated using:
    
    for f in `find ./storage/innobase/ -type f` ; do perl -i -0pe 's/\*\/\n{2,}([^({\n]+\n[a-z0-9_]+\()/*\/\n$1/isg;' $f ; done
    
    This will skip class methods that are indented away from column 1:
    	... comment end */
    
    	int
    	method(...
    
    Approved by:	Sunny (rb#6611)
    333edb00
    Fix Bug#19588190 REMOVE THE EMPTY LINE AFTER FUNCTION COMMENTS IN INNODB
    Vasil Dimov authored
    Remove the empty line between function comment and prototype/body.
    
    The patch was generated using:
    
    for f in `find ./storage/innobase/ -type f` ; do perl -i -0pe 's/\*\/\n{2,}([^({\n]+\n[a-z0-9_]+\()/*\/\n$1/isg;' $f ; done
    
    This will skip class methods that are indented away from column 1:
    	... comment end */
    
    	int
    	method(...
    
    Approved by:	Sunny (rb#6611)
Loading