Fixed comments.

git-svn-id: http://yate.null.ro/svn/yate/trunk@1915 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
marian 2008-04-16 10:05:37 +00:00
parent 4b38f712e2
commit 6f3ba69cb3
1 changed files with 3 additions and 3 deletions

View File

@ -1035,7 +1035,7 @@ public:
/**
* Replace all flags
* @param flags The new value of the flags
* @param flag The new value of the flags
*/
inline void replace(int flag)
{ m_value = flag; }
@ -1049,14 +1049,14 @@ public:
/**
* Set one or more flags
* @param flags Flag(s) to set
* @param flag Flag(s) to set
*/
inline void set(int flag)
{ m_value |= flag; }
/**
* Reset one or more flags
* @param flags Flag(s) to reset
* @param flag Flag(s) to reset
*/
inline void reset(int flag)
{ m_value &= ~flag; }