Kaydet (Commit) f21d798d authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:deletedspecial

Change-Id: I2325b646baf7d2942930088bbe6494ddee6aec85
üst d25b49fb
......@@ -235,9 +235,8 @@ namespace basegfx
}
private:
// default: disabled copy/assignment
B2DConnectedRanges(const B2DConnectedRanges&);
B2DConnectedRanges& operator=( const B2DConnectedRanges& );
B2DConnectedRanges(const B2DConnectedRanges&) SAL_DELETED_FUNCTION;
B2DConnectedRanges& operator=( const B2DConnectedRanges& ) SAL_DELETED_FUNCTION;
/** Current list of disjunct sets of connected components
......
......@@ -36,9 +36,8 @@ namespace basegfx
class BPixelRaster
{
private:
// do not allow copy constructor and assignment operator
BPixelRaster(const BPixelRaster&);
BPixelRaster& operator=(const BPixelRaster&);
BPixelRaster(const BPixelRaster&) SAL_DELETED_FUNCTION;
BPixelRaster& operator=(const BPixelRaster&) SAL_DELETED_FUNCTION;
protected:
sal_uInt32 mnWidth;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment