mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-4288 comment out name of unused parameters.
X-SVN-Rev: 17262
This commit is contained in:
parent
407d357101
commit
fe3b5b28c7
1 changed files with 2 additions and 2 deletions
|
@ -330,7 +330,7 @@ public:
|
|||
|
||||
inline VisualRun();
|
||||
inline VisualRun(const VisualRun &other);
|
||||
inline VisualRun &operator=(const VisualRun &other) { return *this; };
|
||||
inline VisualRun &operator=(const VisualRun &/*other*/) { return *this; };
|
||||
|
||||
inline VisualRun(const LEFontInstance *font, UBiDiDirection direction, le_int32 glyphCount,
|
||||
const LEGlyphID glyphs[], const float positions[], const le_int32 glyphToCharMap[]);
|
||||
|
@ -703,7 +703,7 @@ inline ParagraphLayout::VisualRun::VisualRun()
|
|||
// nothing
|
||||
}
|
||||
|
||||
inline ParagraphLayout::VisualRun::VisualRun(const VisualRun &other)
|
||||
inline ParagraphLayout::VisualRun::VisualRun(const VisualRun &/*other*/)
|
||||
: UObject(), fFont(NULL), fDirection(UBIDI_LTR), fGlyphCount(0), fGlyphs(NULL), fPositions(NULL), fGlyphToCharMap(NULL)
|
||||
{
|
||||
// nothing
|
||||
|
|
Loading…
Add table
Reference in a new issue