[geany/geany] a4027f: scintilla: Fix GCC 4.8 support wrt noexcept move constructors

Colomban Wendling git-noreply at xxxxx
Fri May 3 15:49:55 UTC 2019


Branch:      refs/heads/master
Author:      Colomban Wendling <ban at herbesfolles.org>
Committer:   Colomban Wendling <ban at herbesfolles.org>
Date:        Fri, 03 May 2019 15:49:55 UTC
Commit:      a4027f9f8fdf4ab9efc984f88b945c9911e583b6
             https://github.com/geany/geany/commit/a4027f9f8fdf4ab9efc984f88b945c9911e583b6

Log Message:
-----------
scintilla: Fix GCC 4.8 support wrt noexcept move constructors

X-Scintilla-Commit-ID: ee3fe56c6fe815781d02fbc7d55d9f15f9c439aa


Modified Paths:
--------------
    scintilla/src/XPM.h

Modified: scintilla/src/XPM.h
8 lines changed, 4 insertions(+), 4 deletions(-)
===================================================================
@@ -26,9 +26,9 @@ class XPM {
 	explicit XPM(const char *textForm);
 	explicit XPM(const char *const *linesForm);
 	XPM(const XPM &) = default;
-	XPM(XPM &&) noexcept = default;
+	XPM(XPM &&) = default;
 	XPM &operator=(const XPM &) = default;
-	XPM &operator=(XPM &&) noexcept = default;
+	XPM &operator=(XPM &&) = default;
 	~XPM();
 	void Init(const char *textForm);
 	void Init(const char *const *linesForm);
@@ -53,9 +53,9 @@ class RGBAImage {
 	RGBAImage(int width_, int height_, float scale_, const unsigned char *pixels_);
 	explicit RGBAImage(const XPM &xpm);
 	RGBAImage(const RGBAImage &) = default;
-	RGBAImage(RGBAImage &&) noexcept = default;
+	RGBAImage(RGBAImage &&) = default;
 	RGBAImage &operator=(const RGBAImage &) = default;
-	RGBAImage &operator=(RGBAImage &&) noexcept = default;
+	RGBAImage &operator=(RGBAImage &&) = default;
 	virtual ~RGBAImage();
 	int GetHeight() const { return height; }
 	int GetWidth() const { return width; }



--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).


More information about the Commits mailing list