From: reed@google.com Date: Tue, 19 Jun 2012 15:27:46 +0000 (+0000) Subject: landing http://codereview.appspot.com/6306095/ by guanqun X-Git-Tag: submit/tizen/20180928.044319~15857 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2999f789c7e66a31066414f4b8fffb3148b677c5;p=platform%2Fupstream%2FlibSkiaSharp.git landing codereview.appspot.com/6306095/ by guanqun fix the following warning for SkColorTable ../src/core/SkColorTable.cpp: In copy constructor ‘SkColorTable::SkColorTable(const SkColorTable&)’: ../src/core/SkColorTable.cpp:30:1: warning: base class ‘class SkFlattenable’ should be explicitly initialized in the copy constructor [-Wextra] git-svn-id: http://skia.googlecode.com/svn/trunk@4280 2bbb7eff-a529-9590-31e7-b0007b416f81 --- diff --git a/src/core/SkColorTable.cpp b/src/core/SkColorTable.cpp index 921d6595b5..3797fbd376 100644 --- a/src/core/SkColorTable.cpp +++ b/src/core/SkColorTable.cpp @@ -27,7 +27,9 @@ SkColorTable::SkColorTable(int count) SkDEBUGCODE(f16BitCacheLockCount = 0;) } -SkColorTable::SkColorTable(const SkColorTable& src) { +// As copy constructor is hidden in the class hierarchy, we need to call +// default constructor explicitly to suppress a compiler warning. +SkColorTable::SkColorTable(const SkColorTable& src) : INHERITED() { f16BitCache = NULL; fFlags = src.fFlags; int count = src.count();