Skip to content

Commit

Permalink
Fix some pedantic style issues in Font.h
Browse files Browse the repository at this point in the history
  • Loading branch information
jscipione committed Jan 16, 2013
1 parent 5e65407 commit 75dde2c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions headers/os/interface/Font.h
Expand Up @@ -9,6 +9,7 @@
#include <SupportDefs.h>
#include <InterfaceDefs.h>


class BPoint;


Expand Down Expand Up @@ -138,8 +139,8 @@ struct escapement_delta {


struct font_cache_info {
int32 sheared_font_penalty;
int32 rotated_font_penalty;
int32 sheared_font_penalty;
int32 rotated_font_penalty;
float oversize_threshold;
int32 oversize_penalty;
int32 cache_size;
Expand Down Expand Up @@ -352,7 +353,7 @@ unicode_block::operator&(const unicode_block& block) const
return result;
}


unicode_block
unicode_block::operator|(const unicode_block& block) const
{
Expand All @@ -363,7 +364,7 @@ unicode_block::operator|(const unicode_block& block) const
return result;
}


unicode_block&
unicode_block::operator=(const unicode_block& block)
{
Expand All @@ -386,4 +387,5 @@ unicode_block::operator!=(const unicode_block& block) const
return fData[0] != block.fData[0] || fData[1] != block.fData[1];
}


#endif // _FONT_H_

0 comments on commit 75dde2c

Please sign in to comment.