From bff506d3b5e03891c137d9fe18f65cae112ebf2a Mon Sep 17 00:00:00 2001 From: weili Date: Mon, 20 Jun 2016 11:37:05 -0700 Subject: Change func(void) to func() Since PDFium is compiled as C++ code, the void keyword is not needed. BUG=pdfium:519 Review-Url: https://codereview.chromium.org/2084603003 --- core/fpdfapi/fpdf_font/ttgsubtable.cpp | 4 ++-- core/fpdfapi/fpdf_font/ttgsubtable.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'core/fpdfapi') diff --git a/core/fpdfapi/fpdf_font/ttgsubtable.cpp b/core/fpdfapi/fpdf_font/ttgsubtable.cpp index 8900e274fe..56a388203f 100644 --- a/core/fpdfapi/fpdf_font/ttgsubtable.cpp +++ b/core/fpdfapi/fpdf_font/ttgsubtable.cpp @@ -61,7 +61,7 @@ FX_BOOL CFX_GlyphMap::Lookup(int key, int& value) { return TRUE; } -CFX_CTTGSUBTable::CFX_CTTGSUBTable(void) +CFX_CTTGSUBTable::CFX_CTTGSUBTable() : m_bFeautureMapLoad(FALSE), loaded(false) {} CFX_CTTGSUBTable::CFX_CTTGSUBTable(FT_Bytes gsub) @@ -71,7 +71,7 @@ CFX_CTTGSUBTable::CFX_CTTGSUBTable(FT_Bytes gsub) CFX_CTTGSUBTable::~CFX_CTTGSUBTable() {} -bool CFX_CTTGSUBTable::IsOk(void) const { +bool CFX_CTTGSUBTable::IsOk() const { return loaded; } diff --git a/core/fpdfapi/fpdf_font/ttgsubtable.h b/core/fpdfapi/fpdf_font/ttgsubtable.h index de7a4f03ec..fc040b6e53 100644 --- a/core/fpdfapi/fpdf_font/ttgsubtable.h +++ b/core/fpdfapi/fpdf_font/ttgsubtable.h @@ -33,7 +33,7 @@ class CFX_CTTGSUBTable { explicit CFX_CTTGSUBTable(FT_Bytes gsub); virtual ~CFX_CTTGSUBTable(); - bool IsOk(void) const; + bool IsOk() const; bool LoadGSUBTable(FT_Bytes gsub); bool GetVerticalGlyph(uint32_t glyphnum, uint32_t* vglyphnum); -- cgit v1.2.3