diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2018-06-14 18:24:48 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marc@jeanmougin.fr> | 2018-06-14 18:24:48 +0000 |
| commit | 5f4e9e22f0d31216b16b31c860ca6b5a66ab91cb (patch) | |
| tree | ab03ddc2f4ac91690f2003d7b7075d7d9e230e1d /src/device-manager.cpp | |
| parent | Merge branch 'transl_fr' of gitlab.com:gadic/inkscape (diff) | |
| parent | Run clang-tidy’s modernize-use-equals-delete pass. (diff) | |
| download | inkscape-5f4e9e22f0d31216b16b31c860ca6b5a66ab91cb.tar.gz inkscape-5f4e9e22f0d31216b16b31c860ca6b5a66ab91cb.zip | |
Merge branch 'clang-tidy-delete-pass' of gitlab.com:linkmauve/inkscape
Diffstat (limited to 'src/device-manager.cpp')
| -rw-r--r-- | src/device-manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device-manager.cpp b/src/device-manager.cpp index 6c8d4514c..185d417fb 100644 --- a/src/device-manager.cpp +++ b/src/device-manager.cpp @@ -188,8 +188,8 @@ public: virtual Glib::RefPtr<Gdk::Device> getDevice() {return device;} private: - InputDeviceImpl(InputDeviceImpl const &); // no copy - void operator=(InputDeviceImpl const &); // no assign + InputDeviceImpl(InputDeviceImpl const &) = delete; // no copy + void operator=(InputDeviceImpl const &) = delete; // no assign static Glib::ustring createId(Glib::ustring const &id, Gdk::InputSource source, std::set<Glib::ustring> &knownIDs); |
