List:Commits« Previous MessageNext Message »
From:Konstantin Osipov Date:August 16 2007 8:55am
Subject:Re: bk commit into 5.1 tree (mats:1.2560)
View as plain text  
* Mats Kindahl <mats@stripped> [07/08/16 10:56]:
> ChangeSet@stripped, 2007-08-16 08:52:50+02:00, mats@stripped +11 -0
>   Renaming MASTER_INFO to Master_info in order to follow the coding
>   standards (and help Doxygen generating good documentation).

OK to push.

Please see unrelated comment below.

> -  class MASTER_INFO *mi;
> +  /* parent Master_info structure */
> +  class Master_info *mi;

I noticed that this noise word ("class" or "struct") can get
doxygen confused too.

E.g. if declaration contains:

void foo(class Bar *bar);


and definition is:

void foo(Bar *bar)
{
  ...
}


doxygen wouldn't always be able to match declaration to
definition.

PS BTW, how do you do these renames?
I normally use 'replace' command by Monty:

bk edit *.{h,cc}
replace MASTER_INFO Master_info -- *.{h,cc}

It has one drawback, if it meets a symlink, it converts it to a
hard copy.

-- 
-- Konstantin Osipov              Software Developer, Moscow, Russia
-- MySQL AB, www.mysql.com   The best DATABASE COMPANY in the GALAXY
Thread
bk commit into 5.1 tree (mats:1.2560)Mats Kindahl16 Aug
  • Re: bk commit into 5.1 tree (mats:1.2560)Konstantin Osipov16 Aug
Re: bk commit into 5.1 tree (mats:1.2560)Mats Kindahl16 Aug