mark default constructor for SkMatrix44 as deprecated, since it calls setIdentity()

and we have explicit (enum-based) constructors to distinguish that from uninitialized.



git-svn-id: http://skia.googlecode.com/svn/trunk@7228 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
reed@google.com 2013-01-16 16:28:58 +00:00
Родитель 4668e13c37
Коммит edb7713cd5
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -112,6 +112,7 @@ public:
SkMatrix44(Uninitialized_Constructor) { }
SkMatrix44(Identity_Constructor) { this->setIdentity(); }
// DEPRECATED: use the constructors that take an enum
SkMatrix44() { this->setIdentity(); }
SkMatrix44(const SkMatrix44& src) {