diff options
| author | Alexander Valavanis <valavanisalex@gmail.com> | 2019-02-01 19:59:05 +0000 |
|---|---|---|
| committer | Alexander Valavanis <valavanisalex@gmail.com> | 2019-02-01 19:59:05 +0000 |
| commit | db053372c3b10afd89e780ab08a63493ccc3d1a7 (patch) | |
| tree | 97d7ad322270c4167de38b7194021d45405fa8d5 /src/object | |
| parent | ComboToolItem: Temporary workaround to display pixbuf by default (diff) | |
| download | inkscape-db053372c3b10afd89e780ab08a63493ccc3d1a7.tar.gz inkscape-db053372c3b10afd89e780ab08a63493ccc3d1a7.zip | |
clang-tidy recent changes
Diffstat (limited to 'src/object')
| -rw-r--r-- | src/object/uri-references.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/object/uri-references.h b/src/object/uri-references.h index 404e7a85a..730f2534a 100644 --- a/src/object/uri-references.h +++ b/src/object/uri-references.h @@ -50,6 +50,9 @@ public: URIReference(SPObject *owner); URIReference(SPDocument *owner_document); + /* Definition-less to prevent accidental use. */ + void operator=(URIReference const& ref) = delete; + /** * Destructor. Calls shutdown() if the reference has not been * shut down yet. @@ -138,9 +141,6 @@ private: void _setObject(SPObject *object); void _release(SPObject *object); - - void operator=(URIReference const& ref) = delete; - /* Private and definition-less to prevent accidental use. */ }; } |
